Browse Source

[fix] result count tests

Adam Tauber 8 years ago
parent
commit
c75d0d1532
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/unit/test_webapp.py

+ 2 - 2
tests/unit/test_webapp.py

@@ -38,7 +38,7 @@ class ViewsTestCase(SearxTestCase):
                                                 suggestions=set(),
                                                 infoboxes=[],
                                                 results=self.test_results,
-                                                number_of_results=len(self.test_results),
+                                                results_number=lambda: 3,
                                                 results_length=lambda: len(self.test_results))
 
         webapp.Search.search = search_mock
@@ -96,7 +96,7 @@ class ViewsTestCase(SearxTestCase):
         )
 
         self.assertIn(
-            '<opensearch:totalResults>2</opensearch:totalResults>',
+            '<opensearch:totalResults>3</opensearch:totalResults>',
             result.data
         )