summaryrefslogtreecommitdiff
path: root/test/net/http
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-25 12:11:31 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-25 12:11:31 +0000
commit8607229132adb5c67b0e3f22a6877d6e824c23d9 (patch)
tree5e7a51bf1df1e44448bd639844feeb178088d7c5 /test/net/http
parente85693fc77cf2e854568dda5a56d0d2293bae665 (diff)
increase body size
To try to block writing on travis. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63749 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net/http')
-rw-r--r--test/net/http/test_http.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index ee9a66dfaa..389b6fa42e 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -542,7 +542,7 @@ module TestNetHTTP_version_1_1_methods
th = Thread.new do
err = !windows? ? Net::WriteTimeout : Net::ReadTimeout
- assert_raise(err) { conn.post('/', "a"*5_000_000) }
+ assert_raise(err) { conn.post('/', "a"*50_000_000) }
end
assert th.join(10)
}