summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-02-17 08:30:28 -0500
committerNick Mathewson <nickm@torproject.org>2015-02-17 08:30:28 -0500
commit8375663adf9b3150d3970b539cc941cc0e548eb5 (patch)
treeb99ff3f803352e21220968767154e52a04f21ede
parentd6dbd55849426ca5d7a2ea9f2aa4f1e85ab020f6 (diff)
downloadtor-8375663adf9b3150d3970b539cc941cc0e548eb5.tar.gz
tor-8375663adf9b3150d3970b539cc941cc0e548eb5.zip
Wrap two long lines
-rw-r--r--src/test/test_entrynodes.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test_entrynodes.c b/src/test/test_entrynodes.c
index 5f2051c48f..a7e18cdd97 100644
--- a/src/test/test_entrynodes.c
+++ b/src/test/test_entrynodes.c
@@ -150,7 +150,8 @@ populate_live_entry_guards_test_helper(int num_needed)
} SMARTLIST_FOREACH_END(node);
/* Make sure the nodes were added as entry guards. */
- tt_int_op(smartlist_len(all_entry_guards), OP_EQ, HELPER_NUMBER_OF_DESCRIPTORS);
+ tt_int_op(smartlist_len(all_entry_guards), OP_EQ,
+ HELPER_NUMBER_OF_DESCRIPTORS);
/* Ensure that all the possible entry guards are enough to satisfy us. */
tt_int_op(smartlist_len(all_entry_guards), OP_GE, num_needed);
@@ -603,7 +604,8 @@ test_entry_is_live(void *arg)
} SMARTLIST_FOREACH_END(node);
/* Make sure the nodes were added as entry guards. */
- tt_int_op(smartlist_len(all_entry_guards), OP_EQ, HELPER_NUMBER_OF_DESCRIPTORS);
+ tt_int_op(smartlist_len(all_entry_guards), OP_EQ,
+ HELPER_NUMBER_OF_DESCRIPTORS);
/* Now get a random test entry that we will use for this unit test. */
which_node = 3; /* (chosen by fair dice roll) */