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

Commit 2fa8ec2

Browse files
committed
removed redundant test
1 parent 8a980d6 commit 2fa8ec2

2 files changed

Lines changed: 0 additions & 27 deletions

File tree

tests/unit/data/_async/test_client.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,20 +1050,6 @@ async def test_default_universe_domain(self):
10501050

10511051
@CrossSync.pytest
10521052
async def test_custom_universe_domain(self):
1053-
"""test with a customized universe domain value"""
1054-
universe_domain = "test-universe.test"
1055-
options = client_options.ClientOptions(universe_domain=universe_domain)
1056-
async with self._make_client(
1057-
project="project_id",
1058-
client_options=options,
1059-
use_emulator=False,
1060-
credentials=None,
1061-
) as client:
1062-
assert client.universe_domain == universe_domain
1063-
assert client.api_endpoint == f"bigtable.{universe_domain}"
1064-
1065-
@CrossSync.pytest
1066-
async def test_custom_universe_domain_w_emulator(self):
10671053
"""test with a customized universe domain value and emulator enabled"""
10681054
universe_domain = "test-universe.test"
10691055
options = client_options.ClientOptions(universe_domain=universe_domain)

tests/unit/data/_sync_autogen/test_client.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -844,19 +844,6 @@ def test_default_universe_domain(self):
844844
assert client.api_endpoint == "bigtable.googleapis.com"
845845

846846
def test_custom_universe_domain(self):
847-
"""test with a customized universe domain value"""
848-
universe_domain = "test-universe.test"
849-
options = client_options.ClientOptions(universe_domain=universe_domain)
850-
with self._make_client(
851-
project="project_id",
852-
client_options=options,
853-
use_emulator=False,
854-
credentials=None,
855-
) as client:
856-
assert client.universe_domain == universe_domain
857-
assert client.api_endpoint == f"bigtable.{universe_domain}"
858-
859-
def test_custom_universe_domain_w_emulator(self):
860847
"""test with a customized universe domain value and emulator enabled"""
861848
universe_domain = "test-universe.test"
862849
options = client_options.ClientOptions(universe_domain=universe_domain)

0 commit comments

Comments
 (0)