forked from M-Labs/artiq
1
0
Fork 0

Commit missing parts of 501de306.

This commit is contained in:
whitequark 2016-03-18 22:48:26 +00:00
parent 501de30626
commit 891e3cf1fe
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ from math import sqrt
from artiq.experiment import *
from artiq.test.hardware_testbench import ExperimentCase
from artiq.coredevice import exceptions
artiq_low_latency = os.getenv("ARTIQ_LOW_LATENCY")
@ -285,7 +286,7 @@ class CoredeviceTest(ExperimentCase):
def test_watchdog(self):
# watchdog only works on the device
with self.assertRaises(IOError):
with self.assertRaises(exceptions.WatchdogExpired):
self.execute(Watchdog)
@unittest.skipUnless(artiq_low_latency,