summaryrefslogtreecommitdiff
path: root/wasp/boards
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2021-01-10 16:07:15 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2021-01-10 16:07:15 (GMT)
commitbc9000c1a50ee6c9b72e7dbf2eeacb7eba67cc32 (patch)
tree2c9ed0a21daa580acef698eb09b44754f3817530 /wasp/boards
parent5b74c45e58eedddf3432b595822989afba8bf3a4 (diff)
simulator: tests: Update after renaming the stopwatch app
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/boards')
-rw-r--r--wasp/boards/simulator/test_smoke.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wasp/boards/simulator/test_smoke.py b/wasp/boards/simulator/test_smoke.py
index 50636d0..c9f928b 100644
--- a/wasp/boards/simulator/test_smoke.py
+++ b/wasp/boards/simulator/test_smoke.py
@@ -32,7 +32,7 @@ def test_quick_ring(system):
names = [ x.NAME for x in system.quick_ring ]
assert('Clock' in names)
assert('Steps' in names)
- assert('Timer' in names)
+ assert('Stopclock' in names)
assert('Heart' in names)
def test_launcher_ring(system):
@@ -41,7 +41,7 @@ def test_launcher_ring(system):
assert('Software' in names)
@pytest.mark.parametrize("name",
- ('Steps', 'Timer', 'Heart', 'Settings', 'Software'))
+ ('Steps', 'Stopclock', 'Heart', 'Settings', 'Software'))
def test_app(system, name):
system.switch(system.apps[name])
for i in range(4):
@@ -73,7 +73,7 @@ def test_constructor(system, constructor):
raise
def test_stopwatch(system):
- system.switch(system.apps['Timer'])
+ system.switch(system.apps['Stopclock'])
system.step()