We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 273e2a2 commit e1f8fc7Copy full SHA for e1f8fc7
packages/google-cloud-storage/tests/unit/test_client.py
@@ -375,9 +375,9 @@ def test_ctor_w_custom_endpoint_w_credentials(self):
375
PROJECT = "PROJECT"
376
custom_endpoint = "storage-example.p.googleapis.com"
377
credentials = _make_credentials(project=PROJECT)
378
- client = self._make_one(
379
- credentials=credentials, client_options={"api_endpoint": custom_endpoint}
380
- )
+ client = self._make_one(
+ credentials=credentials, client_options={"api_endpoint": custom_endpoint}
+ )
381
self.assertEqual(client._connection.API_BASE_URL, custom_endpoint)
382
self.assertEqual(client.project, PROJECT)
383
self.assertIsInstance(client._connection, Connection)
0 commit comments