Skip to content

Commit

Permalink
TST #1218 straggler
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Oct 29, 2024
1 parent ada8229 commit 895b5ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ophyd/tests/test_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,15 +947,15 @@ class MyDevice(Device):


@pytest.mark.parametrize(
"before, after, expected",
"before, after",
[
[False, True, True],
[0, 1, True],
[0, 0, False],
["", "1!", True],
],
)
def test_trigger_value(before, after, expected):
def test_trigger_value(before, after):
"""Ensure the configured trigger_value is used."""

class FakeTriggerableDevice(Device):
Expand Down

0 comments on commit 895b5ac

Please sign in to comment.