diff options
author | Andrew Godwin | 2022-12-15 13:48:24 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-15 13:48:24 -0700 |
commit | 612ab4bcdf127adcff58466e96e48d62b6036b15 (patch) | |
tree | 9f8ec0b9b1982739059ba32a6c18765f7a4910ab | |
parent | 13fd3785f276f028d945621374b5b0088a8a469c (diff) | |
download | takahe-612ab4bcdf127adcff58466e96e48d62b6036b15.tar.gz takahe-612ab4bcdf127adcff58466e96e48d62b6036b15.tar.bz2 takahe-612ab4bcdf127adcff58466e96e48d62b6036b15.zip |
Fix stator test fixture
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index d65b5da..9127466 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -223,7 +223,7 @@ def stator(config_system) -> StatorRunner: concurrency=100, schedule_interval=30, ) - runner.handled = 0 + runner.handled = {} runner.started = time.monotonic() runner.last_clean = time.monotonic() - runner.schedule_interval runner.tasks = [] |