Skip to content

Commit e045530

Browse files
committed
fix
1 parent 44037fb commit e045530

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

microsoft/testsuites/core/azure_image_standard.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -535,10 +535,10 @@ def verify_dhcp_file_configuration(self, node: Node) -> None:
535535
elif isinstance(node.os, CBLMariner):
536536
if node.os.information.version.major == 3:
537537
dhcp_file_path = "/etc/dhcpcd.conf"
538-
dhcp_file_content = 'option host_name'
538+
dhcp_file_content = "option host_name"
539539
else:
540540
dhcp_file_path = "/etc/dhcp/dhclient.conf"
541-
dhcp_file_content = 'host-name'
541+
dhcp_file_content = "host-name"
542542
file_exists = node.shell.exists(PurePosixPath(dhcp_file_path))
543543

544544
assert_that(

0 commit comments

Comments
 (0)