summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-01-10 23:11:13 +0000
committerRoger Dingledine <arma@torproject.org>2008-01-10 23:11:13 +0000
commit4e9a701d4b9d66e6c74ca42986eb42435fa1728e (patch)
tree371092e4f635f163dbff5442a43576d26c0dcc7b
parent8435de3c78e3c0522e98519cccf0d0942d4ab216 (diff)
downloadtor-4e9a701d4b9d66e6c74ca42986eb42435fa1728e.tar.gz
tor-4e9a701d4b9d66e6c74ca42986eb42435fa1728e.zip
fix unit tests after r13092
svn:r13100
-rw-r--r--src/or/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/test.c b/src/or/test.c
index 5a1d317ef0..918a72f254 100644
--- a/src/or/test.c
+++ b/src/or/test.c
@@ -3449,7 +3449,7 @@ test_geoip(void)
geoip_note_client_seen(i, now-7200);
s = geoip_get_client_history(now+5*24*60*60);
test_assert(s);
- test_streq("zz=16,ab=8", s);
+ test_streq("zz=24,ab=16", s);
tor_free(s);
/* Now clear out all the zz observations. */
@@ -3461,7 +3461,7 @@ test_geoip(void)
geoip_note_client_seen(i, now-3600);
s = geoip_get_client_history(now+5*24*60*60);
test_assert(s);
- test_streq("ab=8", s);
+ test_streq("ab=16", s);
tor_free(s);
}