Skip to content

Commit 91e9939

Browse files
committed
chore: address PR comments
1 parent 6ffbc9c commit 91e9939

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

src/aks-preview/azext_aks_preview/tests/latest/test_agentpool_decorator.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2092,8 +2092,6 @@ def test_construct_agentpool_profile_preview(self):
20922092
network_profile=self.models.AgentPoolNetworkProfile(),
20932093
security_profile=ground_truth_security_profile,
20942094
)
2095-
print(dec_agentpool_1)
2096-
print(ground_truth_agentpool_1)
20972095
self.assertEqual(dec_agentpool_1, ground_truth_agentpool_1)
20982096

20992097
dec_1.context.raw_param.print_usage_statistics()
@@ -2769,8 +2767,6 @@ def test_update_agentpool_profile_preview(self):
27692767
ground_truth_agentpool_1 = self.create_initialized_agentpool_instance(
27702768
nodepool_name="test_nodepool_name",
27712769
)
2772-
print(dec_agentpool_1)
2773-
print(ground_truth_agentpool_1)
27742770
self.assertEqual(dec_agentpool_1, ground_truth_agentpool_1)
27752771

27762772
dec_1.context.raw_param.print_usage_statistics()

src/aks-preview/azext_aks_preview/tests/latest/test_update_agentpool_profile_preview.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,7 @@ def track_and_return(pool):
489489
decorator.update_localdns_profile = create_tracking_mock("update_localdns_profile")
490490
decorator.update_auto_scaler_properties_vms = create_tracking_mock("update_auto_scaler_properties_vms")
491491
decorator.update_upgrade_strategy = create_tracking_mock("update_upgrade_strategy")
492-
decorator.update_blue_green_upgrade_settings = create_tracking_mock("update_blue_green_upgrade_settings")
493-
492+
decorator.update_blue_green_upgrade_settings = create_tracking_mock("update_blue_green_upgrade_settings")
494493

495494
# Act
496495
result = decorator.update_agentpool_profile_preview()

0 commit comments

Comments
 (0)