From 06b9a11494561e309114266bfe3bb001352b596c Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Tue, 26 Mar 2019 23:39:15 +0300 Subject: Tests: speed up Java tests. --- test/test_java_application.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_java_application.py b/test/test_java_application.py index 05e4aadd..30902c1b 100644 --- a/test/test_java_application.py +++ b/test/test_java_application.py @@ -1076,6 +1076,7 @@ class TestUnitJavaApplication(unit.TestUnitApplicationJava): 'X-Header': 'blah', 'Content-Type': 'text/html', 'Host': 'localhost', + 'Connection': 'close', } )['headers']['X-Reply'], 'blah', @@ -1095,6 +1096,7 @@ class TestUnitJavaApplication(unit.TestUnitApplicationJava): 'X-Header': ['blah', 'blah'], 'Content-Type': 'text/html', 'Host': 'localhost', + 'Connection': 'close', } )['headers'] @@ -1130,7 +1132,7 @@ class TestUnitJavaApplication(unit.TestUnitApplicationJava): self.assertNotIn( 'X-Reply-0', - self.get(headers={})['headers'], + self.get(headers={}, read_timeout=1)['headers'], 'get header names empty', ) @@ -1142,6 +1144,7 @@ class TestUnitJavaApplication(unit.TestUnitApplicationJava): 'X-Header': '2', 'Content-Type': 'text/html', 'Host': 'localhost', + 'Connection': 'close', } )['headers'] @@ -1158,6 +1161,7 @@ class TestUnitJavaApplication(unit.TestUnitApplicationJava): 'X-Header': date, 'Content-Type': 'text/html', 'Host': 'localhost', + 'Connection': 'close', } )['headers'] -- cgit