From 4418f57734e7dde203c56bf25a176ffb69887934 Mon Sep 17 00:00:00 2001 From: Gertjan Date: Wed, 23 Oct 2024 12:15:52 +0000 Subject: [PATCH] Fix tests --- test/sequence/test_sequence_strategy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/sequence/test_sequence_strategy.py b/test/sequence/test_sequence_strategy.py index e120dc9..3b80e57 100644 --- a/test/sequence/test_sequence_strategy.py +++ b/test/sequence/test_sequence_strategy.py @@ -50,6 +50,7 @@ def create_state(index, is_available: Callable, outcome_func: Callable) -> State state.outcome = outcome_func(index) if outcome_func else None state.__eq__ = State.__eq__ state.__repr__ = State.__repr__ + state.get_previous_and_next_state_with_binary = lambda: State.get_previous_and_next_state_with_binary(state) return state @staticmethod