]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix flaky API test
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 5 Oct 2022 13:16:14 +0000 (15:16 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 5 Oct 2022 13:16:14 +0000 (15:16 +0200)
The search 'landstr' produces many duplicates so that with
some bad luck 4 or less results may appear. Disable deduplication
to make it more predictable.

test/bdd/api/search/params.feature

index af83bd33b723ac4b07054ca019e77260dbd692c8..053dbbcdf919675bea5eb33a66886b839ba9b721 100644 (file)
@@ -172,10 +172,12 @@ Feature: Search queries
 
     Scenario: Limit number of search results
         When sending json search query "landstr"
+          | dedupe |
+          | 0      |
         Then more than 4 results are returned
         When sending json search query "landstr"
-          | limit |
-          | 4 |
+          | limit | dedupe |
+          | 4     | 0      |
         Then exactly 4 results are returned
 
     Scenario: Limit parameter must be a number