Skip to content

Commit

Permalink
test: fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
blackchoey committed May 22, 2024
1 parent 50bb82e commit 7a0f55d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_create_service(self, resource_group):
self.cmd('az apic service create -g {rg} --name {name}', checks=[
self.check('name', '{name}'),
self.check('resourceGroup', '{rg}'),
self.check('dataApiHostname', '{name}.data.eastus.azure-apicenter.net')
self.check('dataApiHostname', '{name}.data.eastus.azure-apicenter.ms')
])

@ResourceGroupPreparer(name_prefix="clirg", location='eastus', random_name_length=32)
Expand All @@ -42,7 +42,7 @@ def test_show_service(self):
self.cmd('az apic service show -g {rg} -s {s}', checks=[
self.check('name', '{s}'),
self.check('resourceGroup', '{rg}'),
self.check('dataApiHostname', '{s}.data.eastus.azure-apicenter.net')
self.check('dataApiHostname', '{s}.data.eastus.azure-apicenter.ms')
])

@unittest.skip('The Control Plane API has bug')
Expand Down

0 comments on commit 7a0f55d

Please sign in to comment.