Skip to content

Commit 0939f81

Browse files
committed
dev
1 parent 8566be9 commit 0939f81

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_appservice_plan_managedinstance_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..'))
1414

1515
# Test location for managed instance plans
16-
MANAGED_INSTANCE_LOCATION = 'eastus2euap'
16+
MANAGED_INSTANCE_LOCATION = 'westus'
1717

1818

1919
class AppServicePlanManagedInstanceTest(ScenarioTest):

src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2363,7 +2363,7 @@ def test_functionapp_on_linux(self, resource_group, storage_account):
23632363
self.assertTrue('functionapp,linux' in result[0]['kind'])
23642364

23652365
self.cmd('functionapp config show -g {} -n {}'.format(resource_group, functionapp), checks=[
2366-
JMESPathCheck('linuxFxVersion', 'Node|22')])
2366+
JMESPathCheck('linuxFxVersion', 'Node|24')])
23672367

23682368
self.cmd('functionapp delete -g {} -n {}'.format(resource_group, functionapp))
23692369

@@ -2390,7 +2390,7 @@ def test_functionapp_on_linux_version(self, resource_group, storage_account):
23902390
self.assertTrue('functionapp,linux' in result[0]['kind'])
23912391

23922392
self.cmd('functionapp config show -g {} -n {}'.format(resource_group, functionapp), checks=[
2393-
JMESPathCheck('linuxFxVersion', 'Node|22')])
2393+
JMESPathCheck('linuxFxVersion', 'Node|24')])
23942394

23952395
@ResourceGroupPreparer(location=LINUX_ASP_LOCATION_FUNCTIONAPP)
23962396
@StorageAccountPreparer()

0 commit comments

Comments
 (0)