Skip to content

Commit e1f8fc7

Browse files
committed
chore: fixes another indent problem
1 parent 273e2a2 commit e1f8fc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/google-cloud-storage/tests/unit/test_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,9 +375,9 @@ def test_ctor_w_custom_endpoint_w_credentials(self):
375375
PROJECT = "PROJECT"
376376
custom_endpoint = "storage-example.p.googleapis.com"
377377
credentials = _make_credentials(project=PROJECT)
378-
client = self._make_one(
379-
credentials=credentials, client_options={"api_endpoint": custom_endpoint}
380-
)
378+
client = self._make_one(
379+
credentials=credentials, client_options={"api_endpoint": custom_endpoint}
380+
)
381381
self.assertEqual(client._connection.API_BASE_URL, custom_endpoint)
382382
self.assertEqual(client.project, PROJECT)
383383
self.assertIsInstance(client._connection, Connection)

0 commit comments

Comments
 (0)