From d1ee507b3a5f0e7d02dbfd6d50a2cf84afa086e2 Mon Sep 17 00:00:00 2001 From: RumovZ Date: Sun, 15 Nov 2020 09:39:10 +0100 Subject: [PATCH] Update frontend test to new escape handling --- pylib/tests/test_find.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pylib/tests/test_find.py b/pylib/tests/test_find.py index d9b7f76f2..ffa190fa6 100644 --- a/pylib/tests/test_find.py +++ b/pylib/tests/test_find.py @@ -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")