piknik

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

commit a57207f3237a248097200d72a2f3ad73ce04554e
parent 5f898d1da91ecfc79a37d7c91c49d41a7b534c39
Author: lash <dev@holbrook.no>
Date:   Mon,  7 Nov 2022 16:00:19 +0000

Correct state count in test store factory

Diffstat:
Mtests/common.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/common.py b/tests/common.py @@ -14,7 +14,7 @@ def debug_out(self, k, v): class TestStates: def create_states(*args, **kwargs): - return shep.State(7, *args, event_callback=debug_out, **kwargs) + return shep.State(6, *args, event_callback=debug_out, **kwargs) def create_tags(*args, **kwargs):