1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Try to figure out why 2.2.0 isn't failing htis test

This commit is contained in:
Evan Phoenix 2015-06-10 13:13:28 -07:00
parent 0d8f026172
commit 75fa5fd2fd

View file

@ -94,7 +94,7 @@ class Http11ParserTest < Test::Unit::TestCase
parser.reset
# Raise exception if URI path length > 2048
path = "/" + rand_data(2049, 100)
path = "/" + rand_data(3000, 100)
http = "GET #{path} HTTP/1.1\r\n\r\n"
assert_raises Puma::HttpParserError do
parser.execute(req, http, 0)