summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-02-01 10:24:13 -0500
committerNick Mathewson <nickm@torproject.org>2016-02-01 10:24:13 -0500
commit7631cffbccd1536278228f994bc1762e430157ac (patch)
tree944b995ac4b7328eaa594fb08470d45581b8dc29
parentac7e43d30a27dea5485f3ff00f4dd256859bf7aa (diff)
downloadtor-7631cffbccd1536278228f994bc1762e430157ac.tar.gz
tor-7631cffbccd1536278228f994bc1762e430157ac.zip
Fix warnings from check-spaces
-rw-r--r--src/test/test_options.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/test_options.c b/src/test/test_options.c
index 2d48cd17f5..dcf97f897f 100644
--- a/src/test/test_options.c
+++ b/src/test/test_options.c
@@ -370,7 +370,7 @@ get_options_test_data(const char *conf)
}
tt_assert(rv == 0);
-done:
+ done:
config_free_lines(cl);
if (rv != 0) {
free_options_test_data(result);
@@ -1475,7 +1475,8 @@ test_options_validate__paths_needed(void *ignored)
tt_int_op(ret, OP_EQ, -1);
tt_assert(tdata->opt->PathsNeededToBuildCircuits > 0.24 &&
tdata->opt->PathsNeededToBuildCircuits < 0.26);
- expect_log_msg("PathsNeededToBuildCircuits is too low. Increasing to 0.25\n");
+ expect_log_msg("PathsNeededToBuildCircuits is too low. "
+ "Increasing to 0.25\n");
tor_free(msg);
free_options_test_data(tdata);