Skip to content

Commit

Permalink
Make ruff happy
Browse files Browse the repository at this point in the history
  • Loading branch information
rtuck99 committed Jul 16, 2024
1 parent 50a4c60 commit 5b6b6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/beamlines/test_beamline_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_instantiating_different_device_with_same_name():
Smargon, "device", "", False, True, None
)
assert dev1.name == dev2.name
assert type(dev1) != type(dev2)
assert type(dev1) is not type(dev2)
assert dev1 not in beamline_utils.ACTIVE_DEVICES.values()
assert dev2 in beamline_utils.ACTIVE_DEVICES.values()

Expand Down

0 comments on commit 5b6b6a0

Please sign in to comment.