Skip to content

Commit 4939f5a

Browse files
committed
Fix broken test
1 parent da972ad commit 4939f5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_http_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ def test_srv_process_request_without_timeout(self):
541541

542542
def test_keep_alive_timeout_default(self):
543543
srv = server.ServerHttpProtocol(loop=self.loop)
544-
self.assertIsNone(srv.keep_alive_timeout)
544+
self.assertEqual(75, srv.keep_alive_timeout)
545545

546546
def test_keep_alive_timeout_nondefault(self):
547547
srv = server.ServerHttpProtocol(loop=self.loop, keep_alive=10)

0 commit comments

Comments
 (0)