Skip to content

Commit 273e2a2

Browse files
committed
chore: fixes indent problem
1 parent 52e069a commit 273e2a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,10 @@ def test_ctor_w_custom_endpoint_use_auth(self):
362362

363363
def test_ctor_w_custom_endpoint_bypass_auth(self):
364364
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-
)
365+
client = self._make_one(
366+
client_options={"api_endpoint": custom_endpoint},
367+
use_auth_w_custom_endpoint=False,
368+
)
369369
self.assertEqual(client._connection.API_BASE_URL, custom_endpoint)
370370
self.assertEqual(client.project, None)
371371
self.assertIsInstance(client._connection, Connection)

0 commit comments

Comments
 (0)