Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiaswal committed Nov 29, 2024
1 parent d523102 commit d31be19
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/case/ietf_system/upgrade/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import netifaces
import infamy
import infamy.file_server as srv
from infamy.util import wait_boot
from infamy.util import wait_boot, until

SRVPORT = 8008

Expand Down Expand Up @@ -134,5 +134,7 @@ def set_boot_order(self, order):
test.fail()

with test.step("Verify the boot order is the orignal configured"):
assert(old_bootorder == bootloader.get_boot_order())
# Wait for sshd to start.
until(lambda: old_bootorder == bootloader.get_boot_order())

test.succeed()

0 comments on commit d31be19

Please sign in to comment.