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 fc8cf4d commit d500e83Copy full SHA for d500e83
tests/test_discovery.py
@@ -632,7 +632,9 @@ def test_api_endpoint_override_from_client_options_mapping_object(self):
632
api_endpoint = "https://foo.googleapis.com/"
633
mapping_object = defaultdict(str)
634
mapping_object["api_endpoint"] = api_endpoint
635
- plus = build_from_document(discovery, client_options=mapping_object)
+ plus = build_from_document(
636
+ discovery, client_options=mapping_object, credentials=self.MOCK_CREDENTIALS
637
+ )
638
639
self.assertEqual(plus._baseUrl, api_endpoint)
640
0 commit comments