We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e069a commit 273e2a2Copy full SHA for 273e2a2
packages/google-cloud-storage/tests/unit/test_client.py
@@ -362,10 +362,10 @@ def test_ctor_w_custom_endpoint_use_auth(self):
362
363
def test_ctor_w_custom_endpoint_bypass_auth(self):
364
custom_endpoint = "storage-example.p.googleapis.com"
365
- client = self._make_one(
366
- client_options={"api_endpoint": custom_endpoint},
367
- use_auth_w_custom_endpoint=False,
368
- )
+ client = self._make_one(
+ client_options={"api_endpoint": custom_endpoint},
+ use_auth_w_custom_endpoint=False,
+ )
369
self.assertEqual(client._connection.API_BASE_URL, custom_endpoint)
370
self.assertEqual(client.project, None)
371
self.assertIsInstance(client._connection, Connection)
0 commit comments