Skip to content

Commit

Permalink
Test timeout increase (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmklix committed Dec 13, 2023
1 parent b666b92 commit efa8589
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import unittest
import sys

TIMEOUT = 10.0
TIMEOUT = 30.0


class NativeResourceTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def test_h2_client(self):
stream.activate()

# wait for stream to complete (use long timeout, it's a big file)
stream_completion_result = stream.completion_future.result(60)
stream_completion_result = stream.completion_future.result(80)

# check result
self.assertEqual(200, response.status_code)
Expand Down

0 comments on commit efa8589

Please sign in to comment.