Skip to content

Commit

Permalink
Fix tests now that we clean up finished tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
stchris committed Jul 4, 2024
1 parent f12e13e commit a92c592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_taskqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def test_task_queue(self):

worker.ack_message(worker.test_task, channel)
status = dataset.get_status()
assert status["finished"] == 1, status
assert status["finished"] == 0, status
assert status["pending"] == 0, status
assert status["running"] == 0, status
started = unpack_datetime(status["start_time"])
Expand Down

0 comments on commit a92c592

Please sign in to comment.