Unindent block

This commit is contained in:
Nick Mathewson 2016-06-19 12:19:32 -04:00
parent 5a725dab0a
commit d937b86699

View File

@ -1738,7 +1738,6 @@ test_util_gzip(void *arg)
buf1 = tor_strdup("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ");
tt_assert(detect_compression_method(buf1, strlen(buf1)) == UNKNOWN_METHOD);
if (1) {
tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
GZIP_METHOD));
tt_assert(buf2);
@ -1753,7 +1752,6 @@ test_util_gzip(void *arg)
tor_free(buf2);
tor_free(buf3);
}
tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
ZLIB_METHOD));