mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Update frontend test to new escape handling
This commit is contained in:
parent
8d24fb89bf
commit
d1ee507b3a
1 changed files with 1 additions and 2 deletions
|
@ -48,8 +48,7 @@ def test_findCards():
|
|||
# tag searches
|
||||
assert len(col.findCards("tag:*")) == 5
|
||||
assert len(col.findCards("tag:\\*")) == 1
|
||||
assert len(col.findCards("tag:%")) == 5
|
||||
assert len(col.findCards("tag:\\%")) == 1
|
||||
assert len(col.findCards("tag:%")) == 1
|
||||
assert len(col.findCards("tag:animal_1")) == 2
|
||||
assert len(col.findCards("tag:animal\\_1")) == 1
|
||||
assert not col.findCards("tag:donkey")
|
||||
|
|
Loading…
Reference in a new issue