]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
fix wide lines
authorNick Mathewson <nickm@torproject.org>
Thu, 13 Apr 2017 18:36:57 +0000 (14:36 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 13 Apr 2017 18:36:57 +0000 (14:36 -0400)
src/test/test_circuitlist.c
src/test/test_hs_intropoint.c

index 14c65abd0f73815aa2d7bd2658706aa127e4452f..520aaf3c59c49f066a1e2a96e578acfd3ebb06ac 100644 (file)
@@ -420,7 +420,8 @@ test_hs_circuitmap_isolation(void *arg)
     hs_circuitmap_register_intro_circ_v2_relay_side(circ3, tok2);
 
     /* Check that the getters work */
-    tt_ptr_op(circ2, OP_EQ, hs_circuitmap_get_intro_circ_v2_service_side(tok2));
+    tt_ptr_op(circ2, OP_EQ,
+              hs_circuitmap_get_intro_circ_v2_service_side(tok2));
     tt_ptr_op(circ3, OP_EQ, hs_circuitmap_get_intro_circ_v2_relay_side(tok2));
 
     /* Register circ4 with tok2: it should override circ2 */
@@ -431,7 +432,8 @@ test_hs_circuitmap_isolation(void *arg)
 
     /* Check that the getter returns circ4; the last circuit registered with
      * that token. */
-    tt_ptr_op(circ4, OP_EQ, hs_circuitmap_get_intro_circ_v2_service_side(tok2));
+    tt_ptr_op(circ4, OP_EQ,
+              hs_circuitmap_get_intro_circ_v2_service_side(tok2));
   }
 
  done:
@@ -445,7 +447,6 @@ test_hs_circuitmap_isolation(void *arg)
     circuit_free(TO_CIRCUIT(circ4));
 }
 
-
 struct testcase_t circuitlist_tests[] = {
   { "maps", test_clist_maps, TT_FORK, NULL, NULL },
   { "rend_token_maps", test_rend_token_maps, TT_FORK, NULL, NULL },
index 5caa550dd42002a5b510f0e636bf06214c2df993..7bcd5685c34d986639fab84f19c3894b661973c9 100644 (file)
@@ -548,7 +548,8 @@ test_intro_point_registration(void *arg)
     tt_int_op(1, ==, HT_SIZE(the_hs_circuitmap));
     get_auth_key_from_cell(&auth_key, RELAY_COMMAND_ESTABLISH_INTRO,
                            establish_intro_cell);
-    returned_intro_circ = hs_circuitmap_get_intro_circ_v3_relay_side(&auth_key);
+    returned_intro_circ =
+      hs_circuitmap_get_intro_circ_v3_relay_side(&auth_key);
     tt_ptr_op(intro_circ, ==, returned_intro_circ);
   }