Skip to content

Commit

Permalink
Fix bug in enqueue unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
joowani committed Feb 9, 2021
1 parent 644bf73 commit 2e84d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def test_queue_enqueue_job_fully_populated(func, queue, topic, log):
job = queue.enqueue(job)
assert isinstance(job, Job)
assert job.id == job_id
assert job.timestamp == timestamp
assert job.timestamp >= timestamp
assert job.topic == topic
assert job.func == func
assert job.args == (0,)
Expand Down

0 comments on commit 2e84d38

Please sign in to comment.