We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f71e503 commit 495c8acCopy full SHA for 495c8ac
test/test_query.py
@@ -150,7 +150,7 @@ def test_get_one_keyed_exact(self):
150
self.assert_items_matched(results, ['beets 4 eva'])
151
152
def test_get_one_keyed_exact_nocase(self):
153
- q = 'genre:~"hard rock"'
+ q = 'genre:=~"hard rock"'
154
results = self.lib.items(q)
155
156
@@ -220,7 +220,7 @@ def test_key_case_insensitive(self):
220
221
222
def test_keyed_matches_exact_nocase(self):
223
- q = 'genre:~rock'
+ q = 'genre:=~rock'
224
225
self.assert_items_matched(results, [
226
'foo bar',
0 commit comments