]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/api/search/test_token_assignment.py
add address counts to tokens
[nominatim.git] / test / python / api / search / test_token_assignment.py
index 54e8af14cc27fb466e58a99a5d3d7ef28657e1f6..cde8495d0bb2ce557cc9d6ecd2de24721d454f3b 100644 (file)
@@ -19,7 +19,8 @@ class MyToken(Token):
 
 def make_query(*args):
     q = QueryStruct([Phrase(args[0][1], '')])
-    dummy = MyToken(3.0, 45, 1, 'foo', True)
+    dummy = MyToken(penalty=3.0, token=45, count=1, addr_count=1,
+                    lookup_word='foo', is_indexed=True)
 
     for btype, ptype, _ in args[1:]:
         q.add_node(btype, ptype)