Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LiliDeng committed Sep 19, 2024
1 parent a5ef096 commit 7c2b1c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions microsoft/testsuites/vm_extensions/waagent.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ def verify_vm_agent(self, log: Logger, node: Node) -> None:
settings=settings,
force_update_tag=test_file,
)
assert_that(result["provisioning_state"]).described_as(
"Expected the extension to succeed"
).is_equal_to("Succeeded")

# Double-check that the file was actually created.
message = f"File {test_file} was not created on the test machine"
Expand All @@ -67,3 +64,6 @@ def verify_vm_agent(self, log: Logger, node: Node) -> None:
expected_exit_code=0,
expected_exit_code_failure_message=message,
)
assert_that(result["provisioning_state"]).described_as(
"Expected the extension to succeed"
).is_equal_to("Succeeded")

0 comments on commit 7c2b1c3

Please sign in to comment.