Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 418c604

Browse files
committed
fix tests
1 parent c51a920 commit 418c604

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def test_simple(self):
4646
self.assertEqual(c.connection.schema, "http")
4747
c = Client.from_url("databend://root:root@localhost:8000/default?compress=True")
4848
self.assertEqual(c._uploader._compress, True)
49-
self.assertEqual(c.connection.connect_timeout, 20)
50-
self.assertEqual(c.connection.read_timeout, 20)
49+
self.assertEqual(c.connection.connect_timeout, 180)
50+
self.assertEqual(c.connection.read_timeout, 180)
5151

5252
c = Client.from_url("databend://root:root@localhost:8000/default?connect_timeout=30&read_timeout=30")
5353
self.assertEqual(c.connection.connect_timeout, 30)

0 commit comments

Comments
 (0)