We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cd6e7 commit c0221f2Copy full SHA for c0221f2
tests/test_database.py
@@ -837,7 +837,7 @@ def get_ids(**kwargs):
837
assert get_ids(options_like="minhook") == [t1]
838
assert get_ids(options_not_like="minhook") == [t3, t2]
839
assert get_ids(tags_tasks_like="1") == [t2]
840
- assert get_ids(task_ids=(t1, t2)) == [t2, t1]
+ assert get_ids(task_ids=(t1, t2)) == [t1, t2]
841
assert get_ids(task_ids=(t3 + 1,)) == []
842
assert get_ids(user_id=5) == [t3]
843
assert get_ids(user_id=0) == [t2, t1]
0 commit comments