aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-06-29 11:47:35 -0400
committerNick Mathewson <nickm@torproject.org>2011-06-29 11:47:35 -0400
commit9b3f48c0744bd72cb8b25ac7857476181b29481a (patch)
tree5be334c7a97bdcab24cf9e1979ba1b4753f0b591 /src/test
parent1ed615ded7db0765e8355687bda8b00fdc643e3e (diff)
downloadtor-9b3f48c0744bd72cb8b25ac7857476181b29481a.tar.gz
tor-9b3f48c0744bd72cb8b25ac7857476181b29481a.zip
Fix 'make check-spaces'
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/test/test.c b/src/test/test.c
index bac73f2709..d0e24d1b91 100644
--- a/src/test/test.c
+++ b/src/test/test.c
@@ -210,7 +210,7 @@ test_buffers_socks4_unsupported_commands_helper(const char *cp, buf_t *buf,
test_eq(4, socks->socks_version);
test_eq(0, socks->replylen); /* XXX: shouldn't tor reply? */
-done:
+ done:
;
}
@@ -248,7 +248,7 @@ test_buffers_socks4_supported_commands_helper(const char *cp, buf_t *buf,
test_eq(0, socks->replylen); /* XXX: shouldn't tor reply? */
test_streq("tor.org", socks->address);
-done:
+ done:
;
}
@@ -279,7 +279,7 @@ test_buffers_socks5_unsupported_commands_helper(const char *cp, buf_t *buf,
test_eq(0, socks->reply[1]); /* XXX: shouldn't tor reply 'command
not supported' [07]? */
-done:
+ done:
;
}
@@ -334,7 +334,7 @@ test_buffers_socks5_supported_commands_helper(const char *cp, buf_t *buf,
test_eq(0, socks->reply[1]);
test_streq("2.2.2.2", socks->address);
-done:
+ done:
;
}
@@ -364,7 +364,7 @@ test_buffers_socks5_no_authenticate_helper(const char *cp, buf_t *buf,
test_eq(5, socks->reply[0]);
test_eq(0, socks->reply[1]);
-done:
+ done:
;
}
@@ -394,7 +394,7 @@ test_buffers_socks5_authenticate_helper(const char *cp, buf_t *buf,
test_eq(2, socks->replylen);
test_eq(5, socks->reply[0]);
test_eq(0, socks->reply[1]);
-done:
+ done:
;
}
@@ -434,7 +434,7 @@ test_buffers_socks5_authenticate_with_data_helper(const char *cp, buf_t *buf,
test_eq(0, socks->reply[1]);
test_streq("2.2.2.2", socks->address);
test_eq(4369, socks->port);
-done:
+ done:
;
}
@@ -454,7 +454,7 @@ test_buffers_socks5_auth_before_negotiation_helper(const char *cp, buf_t *buf,
test_eq(0, socks->reply[0]);
test_eq(0, socks->reply[1]);
-done:
+ done:
;
}