This repository was archived by the owner on Apr 1, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments