From 00420bd08444ac042990623e91f10f6a0b36a3cf Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 19 Jul 2007 20:02:56 +0000 Subject: [PATCH] r13842@catbus: nickm | 2007-07-19 16:02:54 -0400 OSX writes ::3 as ::0.0.0.3; choose a less ambiguous example. svn:r10885 --- src/or/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/test.c b/src/or/test.c index 7ba546ff18..766c1ac4d3 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -1125,7 +1125,7 @@ test_ip6_helpers(void) //test_ntop6_reduces("0:0:0:0:0:0:c0a8:0101", "::192.168.1.1"); test_ntop6_reduces("0:0:0:0:0:ffff:c0a8:0101", "::ffff:192.168.1.1"); test_ntop6_reduces("002:0:0000:0:3::4", "2::3:0:0:4"); - test_ntop6_reduces("0:0::3", "::3"); + test_ntop6_reduces("0:0::1:3", "::1:3"); test_ntop6_reduces("008:0::0", "8::"); test_ntop6_reduces("0:0:0:0:0:ffff::1", "::ffff:0.0.0.1"); test_ntop6_reduces("abcd:0:0:0:0:0:7f00::", "abcd::7f00:0");