Skip to content

Commit c87f4b3

Browse files
committed
Revert "cleanup"
This reverts commit 2ed2301.
1 parent 336a63b commit c87f4b3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/test_actions.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,13 +1180,13 @@ def test_implements_protocol(self) -> None:
11801180
assert isinstance(t, Describable)
11811181

11821182
def test_describe(self) -> None:
1183-
act1 = FakeAction()
1184-
act1.describe.return_value = "Do thing!"
1183+
mock_action1 = FakeAction()
1184+
mock_action1.describe.return_value = "Do thing!"
11851185

1186-
act2 = FakeAction()
1187-
act2.describe.return_value = "produce stuff!"
1186+
mock_action2 = FakeAction()
1187+
mock_action2.describe.return_value = "produce stuff!"
11881188

1189-
t = Either(act1).or_(act2)
1189+
t = Either(mock_action1).or_(mock_action2)
11901190
assert t.describe() == "Either (do thing or produce stuff)"
11911191

11921192
def test_multi_action_describe(self) -> None:

0 commit comments

Comments
 (0)