about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-12-21 10:43:10 +0000
committerEric Wong <e@80x24.org>2014-12-21 10:43:35 +0000
commit080d910038a0572981f3cdd62c032963c513ecf3 (patch)
tree51b11daf26269206f38f28dce1fcab6add47714d
parentec8c095b9f6081ec1462db6c4392ab181bd6790e (diff)
downloadunicorn-080d910038a0572981f3cdd62c032963c513ecf3.tar.gz
This overly zealous test was broken by:
rack commit be28c6a2ac152fe4adfbef71f3db9f4200df89e8
("update HTTP status codes to IETF RFC 7231")
-rwxr-xr-xt/t0002-parser-error.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t0002-parser-error.sh b/t/t0002-parser-error.sh
index 9fa5a31..9dc1cd2 100755
--- a/t/t0002-parser-error.sh
+++ b/t/t0002-parser-error.sh
@@ -42,7 +42,7 @@ t_begin "send a huge Request URI (REQUEST_PATH > (12 * 1024))" && {
 }
 
 t_begin "response should be a 414 (REQUEST_PATH)" && {
-        grep -F 'HTTP/1.1 414 Request-URI Too Long' $tmp
+        grep -F 'HTTP/1.1 414 ' $tmp
 }
 
 t_begin "send a huge Request URI (QUERY_STRING > (10 * 1024))" && {
@@ -63,7 +63,7 @@ t_begin "send a huge Request URI (QUERY_STRING > (10 * 1024))" && {
 }
 
 t_begin "response should be a 414 (QUERY_STRING)" && {
-        grep -F 'HTTP/1.1 414 Request-URI Too Long' $tmp
+        grep -F 'HTTP/1.1 414 ' $tmp
 }
 
 t_begin "send a huge Request URI (FRAGMENT > 1024)" && {
@@ -84,7 +84,7 @@ t_begin "send a huge Request URI (FRAGMENT > 1024)" && {
 }
 
 t_begin "response should be a 414 (FRAGMENT)" && {
-        grep -F 'HTTP/1.1 414 Request-URI Too Long' $tmp
+        grep -F 'HTTP/1.1 414 ' $tmp
 }
 
 t_begin "server stderr should be clean" && check_stderr