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 c4c3506 commit 3280954Copy full SHA for 3280954
tests/unit/test__http.py
@@ -31,8 +31,6 @@ def test_extra_headers(self):
31
import requests
32
from google.cloud import _http as base_http
33
34
- _DEFAULT_TIMEOUT = 60
35
-
36
http = mock.create_autospec(requests.Session, instance=True)
37
response = requests.Response()
38
response.status_code = 200
@@ -57,7 +55,7 @@ def test_extra_headers(self):
57
55
headers=expected_headers,
58
56
method="GET",
59
url=expected_uri,
60
- timeout=_DEFAULT_TIMEOUT,
+ timeout=base_http._DEFAULT_TIMEOUT,
61
)
62
63
def test_build_api_url_no_extra_query_params(self):
0 commit comments