]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/api/search/test_api_search_query.py
remove support for unindexed tokens
[nominatim.git] / test / python / api / search / test_api_search_query.py
index 7154ae084317845075cb3efe57f40cca7f099f94..71caf5b7f282c400ccb8c6fc2a48e08b5bfa54d4 100644 (file)
@@ -19,7 +19,7 @@ class MyToken(query.Token):
 
 def mktoken(tid: int):
     return MyToken(penalty=3.0, token=tid, count=1, addr_count=1,
-                   lookup_word='foo', is_indexed=True)
+                   lookup_word='foo')
 
 
 @pytest.mark.parametrize('ptype,ttype', [('NONE', 'WORD'),