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

Commit a62fa10

Browse files
committed
chore: try removing NO COVER pragmas
1 parent 773346f commit a62fa10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

google/api_core/operations_v1/abstract_operations_base_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class AbstractOperationsBaseClientMeta(type):
5151

5252
_transport_registry = OrderedDict() # type: Dict[str, Type[OperationsTransport]]
5353
_transport_registry["rest"] = OperationsRestTransport
54-
if HAS_ASYNC_REST_DEPENDENCIES: # pragma: NO COVER
54+
if HAS_ASYNC_REST_DEPENDENCIES: # try: NO COVER
5555
_transport_registry["rest_asyncio"] = AsyncOperationsRestTransport
5656

5757
def get_transport_class(

tests/unit/operations_v1/test_operations_rest_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def test_operations_client_client_options(
378378
patched.return_value = None
379379
client = client_class(
380380
client_options=options, transport=transport_name
381-
) # pragma: NO COVER
381+
) # try: NO COVER
382382
patched.assert_called_once_with(
383383
credentials=None,
384384
credentials_file=None,
@@ -388,7 +388,7 @@ def test_operations_client_client_options(
388388
quota_project_id="octopus",
389389
client_info=transports.base.DEFAULT_CLIENT_INFO,
390390
always_use_jwt_access=True,
391-
) # pragma: NO COVER
391+
) # try: NO COVER
392392

393393
# Check the case credentials_file is provided
394394
with warn_deprecated_credentials_file():

0 commit comments

Comments
 (0)