]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Whitespace fixes
authorNick Mathewson <nickm@torproject.org>
Wed, 20 Aug 2014 19:32:35 +0000 (15:32 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 20 Aug 2014 19:32:35 +0000 (15:32 -0400)
src/test/test_entrynodes.c

index bf014f1a9d0eea5f9fe72d67f02924fc11484048..00efa81768093f280ed638adf4a4b2d188b94ead 100644 (file)
@@ -561,18 +561,18 @@ test_entry_is_time_to_retry(void *arg)
 
   retval = entry_is_time_to_retry(test_guard,now);
   tt_int_op(retval,==,1);
-  
+
   test_guard->last_attempted = now - (60*60 - 1);
 
   retval = entry_is_time_to_retry(test_guard,now);
   tt_int_op(retval,==,0);
-  
+
   test_guard->unreachable_since = now - (6*60*60 + 1);
   test_guard->last_attempted = now - (4*60*60 + 1);
 
   retval = entry_is_time_to_retry(test_guard,now);
   tt_int_op(retval,==,1);
-  
+
   test_guard->unreachable_since = now - (3*24*60*60 - 1);
   test_guard->last_attempted = now - (4*60*60 + 1);
 
@@ -682,7 +682,7 @@ static const struct testcase_setup_t fake_network = {
 };
 
 struct testcase_t entrynodes_tests[] = {
-  { "entry_is_time_to_retry", test_entry_is_time_to_retry, 
+  { "entry_is_time_to_retry", test_entry_is_time_to_retry,
     TT_FORK, NULL, NULL },
   { "choose_random_entry_no_guards", test_choose_random_entry_no_guards,
     TT_FORK, &fake_network, NULL },