Skip to content

Commit 2929fe1

Browse files
authored
Merge pull request #173 from canonical/fix-netboot-image-boot-check
Fix: Change expected master boot string for netboot back
2 parents d37d069 + d9bccb2 commit 2929fe1

File tree

1 file changed

+1
-1
lines changed
  • device-connectors/src/testflinger_device_connectors/devices/netboot

1 file changed

+1
-1
lines changed

device-connectors/src/testflinger_device_connectors/devices/netboot/netboot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def is_master_image_booted(self):
189189
except Exception:
190190
# Any connection error will fail through the normal path
191191
pass
192-
if "Testflinger Test Device Imager" in str(data):
192+
if "Snappy Test Device Imager" in str(data):
193193
return True
194194
else:
195195
return False

0 commit comments

Comments
 (0)