Skip to content

Commit b1b5822

Browse files
committed
clean up removed pragmas
1 parent fe43df7 commit b1b5822

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/unit/operations_v1/test_operations_rest_client.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,7 @@ def test_operations_client_client_options(
356356
options = client_options.ClientOptions(quota_project_id="octopus")
357357
with mock.patch.object(transport_class, "__init__") as patched:
358358
patched.return_value = None
359-
client = client_class(
360-
client_options=options, transport=transport_name
361-
) # try: NO COVER
359+
client = client_class(client_options=options, transport=transport_name)
362360
patched.assert_called_once_with(
363361
credentials=None,
364362
credentials_file=None,
@@ -368,7 +366,7 @@ def test_operations_client_client_options(
368366
quota_project_id="octopus",
369367
client_info=transports.base.DEFAULT_CLIENT_INFO,
370368
always_use_jwt_access=True,
371-
) # try: NO COVER
369+
)
372370

373371
# Check the case credentials_file is provided
374372
with warn_deprecated_credentials_file():

0 commit comments

Comments
 (0)