summaryrefslogtreecommitdiff
path: root/src/or/test.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-05-20 18:03:26 +0000
committerNick Mathewson <nickm@torproject.org>2007-05-20 18:03:26 +0000
commit21a72520ce529e0459a29024c706437f7e64c88f (patch)
treebe8cbc2add7ac92f4d2070d969a1117683c1aa8e /src/or/test.c
parent5364833be0f5c7fd3619ab140830194b1f7844a9 (diff)
downloadtor-21a72520ce529e0459a29024c706437f7e64c88f.tar.gz
tor-21a72520ce529e0459a29024c706437f7e64c88f.zip
r13021@Kushana: nickm | 2007-05-20 14:03:10 -0400
Provide actual reasons when dropping an uploaded extrainfo for incompatibility; also, clean whitespace. svn:r10230
Diffstat (limited to 'src/or/test.c')
-rw-r--r--src/or/test.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/or/test.c b/src/or/test.c
index 5c4d349c82..ca6ffa0db7 100644
--- a/src/or/test.c
+++ b/src/or/test.c
@@ -1106,7 +1106,6 @@ test_smartlist(void)
test_assert(smartlist_string_isin(sl, "arma"));
test_assert(smartlist_string_isin(sl, "the"));
-
/* Test bsearch. */
smartlist_sort(sl, _compare_strs);
test_streq("nickm", smartlist_bsearch(sl, "zNicKM",
@@ -1114,8 +1113,6 @@ test_smartlist(void)
test_streq("and", smartlist_bsearch(sl, " AND", _compare_without_first_ch));
test_eq_ptr(NULL, smartlist_bsearch(sl, " ANz", _compare_without_first_ch));
-
-
/* Test reverse() and pop_last() */
smartlist_reverse(sl);
cp = smartlist_join_strings(sl, ",", 0, NULL);