Skip to content

Commit 3280954

Browse files
committed
fix: use base_http again
1 parent c4c3506 commit 3280954

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/unit/test__http.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ def test_extra_headers(self):
3131
import requests
3232
from google.cloud import _http as base_http
3333

34-
_DEFAULT_TIMEOUT = 60
35-
3634
http = mock.create_autospec(requests.Session, instance=True)
3735
response = requests.Response()
3836
response.status_code = 200
@@ -57,7 +55,7 @@ def test_extra_headers(self):
5755
headers=expected_headers,
5856
method="GET",
5957
url=expected_uri,
60-
timeout=_DEFAULT_TIMEOUT,
58+
timeout=base_http._DEFAULT_TIMEOUT,
6159
)
6260

6361
def test_build_api_url_no_extra_query_params(self):

0 commit comments

Comments
 (0)