]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Real enable HttpReply tests
authorAmos Jeffries <amosjeffries@squid-cache.org>
Tue, 4 Aug 2009 12:28:26 +0000 (06:28 -0600)
committerAmos Jeffries <amosjeffries@squid-cache.org>
Tue, 4 Aug 2009 12:28:26 +0000 (06:28 -0600)
src/tests/testHttpReply.cc

index 81fa94e95401b97e8b4f1cd889c1c9cee9a8e58b..b3115e2b98d6264ae810a07aebedb02d3f090abc 100644 (file)
@@ -129,8 +129,6 @@ testHttpReply::testSanityCheckFirstLine()
     input.reset();
     error = HTTP_STATUS_NONE;
 
-#if FUTURE
-
     // status line with no status
     input.append("HTTP/1.1 \n\n", 11);
     hdr_len = headersEnd(input.content(),input.contentSize());
@@ -178,6 +176,4 @@ testHttpReply::testSanityCheckFirstLine()
     CPPUNIT_ASSERT_EQUAL(error, HTTP_INVALID_HEADER);
     input.reset();
     error = HTTP_STATUS_NONE;
-#endif
-
 }