diff options
author | Esteban Manchado Velázquez <emanchado@demiurgo.org> | 2012-02-18 19:29:48 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-03-08 20:49:26 -0500 |
commit | a3679d30c050c96b43c17e8a8be4dc56490afe52 (patch) | |
tree | cde08fbcd50a52e85b0fbb72b912503d1c8ac8e8 /src | |
parent | 8d62e42fd31e292328adfc67257fb7b936b37c46 (diff) | |
download | tor-a3679d30c050c96b43c17e8a8be4dc56490afe52.tar.gz tor-a3679d30c050c96b43c17e8a8be4dc56490afe52.zip |
Remove unreliable assertion
* This assertion fails when executing the whole suite, but not when executing
this test by itself
* Ideally I'd prefer starting with a guaranteed empty directory, but it's not
very important in this case as non-existence of other paths is being checked
explicitly
Diffstat (limited to 'src')
-rw-r--r-- | src/test/test_util.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c index 3efe617ed5..3860f156a9 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -1644,7 +1644,6 @@ test_util_listdir(void *ptr) dir_contents = tor_listdir(dirname); test_assert(dir_contents); /* make sure that each filename is listed. */ - test_eq(4, smartlist_len(dir_contents)); test_assert(smartlist_string_isin_case(dir_contents, "hopscotch")); test_assert(smartlist_string_isin_case(dir_contents, "mumblety-peg")); test_assert(smartlist_string_isin_case(dir_contents, ".hidden-file")); |