diff --git a/test/case/hardware/watchdog/test.py b/test/case/hardware/watchdog/test.py index b8854536..22d279d2 100755 --- a/test/case/hardware/watchdog/test.py +++ b/test/case/hardware/watchdog/test.py @@ -23,7 +23,7 @@ with infamy.Test() as test: tgtssh = env.attach("target", "mgmt", "ssh") with test.step("Verify the presence of a watchdog device"): - wctl = tgtssh.run(["watchdogctl"], stdout=subprocess.PIPE) + wctl = tgtssh.run(["watchdogctl", "-j"], stdout=subprocess.PIPE) conf = json.loads(wctl.stdout) dogs = [ dog for dog in conf.get("device", []) if dog.get("name", "") == "/dev/watchdog" ]