Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Commit 845f497

Browse files
committed
clean up removed pragmas
1 parent 4048ba0 commit 845f497

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
@@ -376,9 +376,7 @@ def test_operations_client_client_options(
376376
options = client_options.ClientOptions(quota_project_id="octopus")
377377
with mock.patch.object(transport_class, "__init__") as patched:
378378
patched.return_value = None
379-
client = client_class(
380-
client_options=options, transport=transport_name
381-
) # try: NO COVER
379+
client = client_class(client_options=options, transport=transport_name)
382380
patched.assert_called_once_with(
383381
credentials=None,
384382
credentials_file=None,
@@ -388,7 +386,7 @@ def test_operations_client_client_options(
388386
quota_project_id="octopus",
389387
client_info=transports.base.DEFAULT_CLIENT_INFO,
390388
always_use_jwt_access=True,
391-
) # try: NO COVER
389+
)
392390

393391
# Check the case credentials_file is provided
394392
with warn_deprecated_credentials_file():

0 commit comments

Comments
 (0)