Skip to content

Commit

Permalink
Fix tests (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicOram committed Apr 5, 2024
1 parent b4f4436 commit c31f638
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/test_device_collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def my_plan():

assert (
checking_loop.run_until_complete(sim_motor.user_setpoint.read())[
"sim_motor-setpoint"
"sim_motor-user_setpoint"
]["value"]
== 3.14
)
Expand Down Expand Up @@ -147,7 +147,7 @@ def my_plan():
# The set should fail since the run engine is on a different event loop
assert (
device_connector_loop.run_until_complete(sim_motor.user_setpoint.read())[
"sim_motor-setpoint"
"sim_motor-user_setpoint"
]["value"]
!= 3.14
)

0 comments on commit c31f638

Please sign in to comment.