From 75fa5fd2fd868c2a68dc1707d3cf7428a299dba6 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Wed, 10 Jun 2015 13:13:28 -0700 Subject: [PATCH] Try to figure out why 2.2.0 isn't failing htis test --- test/test_http11.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_http11.rb b/test/test_http11.rb index dac79ef6..c4e78645 100644 --- a/test/test_http11.rb +++ b/test/test_http11.rb @@ -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)