We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8f269d commit 25d38b3Copy full SHA for 25d38b3
tests/test_client.py
@@ -52,13 +52,11 @@ def test_client_attributes():
52
assert client.hosts == client_hosts
53
assert repr(client) == client_repr
54
assert isinstance(client._host_resolver, RandomHostResolver)
55
-
56
- client = ArangoClient(
57
- hosts=client_hosts,
58
- request_timeout=120
59
- )
+
+ client = ArangoClient(hosts=client_hosts, request_timeout=120)
60
assert client.request_timeout == client._http.REQUEST_TIMEOUT == 120
61
62
def test_client_good_connection(db, username, password):
63
client = ArangoClient(hosts="http://127.0.0.1:8529")
64
0 commit comments