Skip to content

Commit

Permalink
fixing syntax error for netsvc check
Browse files Browse the repository at this point in the history
  • Loading branch information
umfranci committed Sep 5, 2024
1 parent 68a9831 commit d06de74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion microsoft/testsuites/network/networksettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ def _check_msg_level_change_supported(self, node: Node) -> None:
shell=True,
cwd=node.working_path,
).stdout
netvsc_module_exists = node.execute("stat {netvsc_module}", shell=True, sudo=True).exit_code == 0
netvsc_module_exists = node.execute(f"stat {netvsc_module}", shell=True, sudo=True).exit_code == 0
assert netvsc_module_exists, f"{netvsc_module} doesn't exist."

nm = node.tools[Nm]
Expand Down

0 comments on commit d06de74

Please sign in to comment.