summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2021-04-25 11:42:42 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2021-04-25 11:42:42 +0200
commitc6a5cc019ae27b1892b38afd33090653d07f33be (patch)
treef74dd4f0fbb54dafd175a940294236cc2e0a5a03 /tests
parent9937a908c0de3b8fcbaf155e0e46de1da2d4a1cb (diff)
[brand] searxng is a fork from searx
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/robot/__init__.py2
-rw-r--r--tests/unit/test_webapp.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/robot/__init__.py b/tests/robot/__init__.py
index 038a3196..6e789711 100644
--- a/tests/robot/__init__.py
+++ b/tests/robot/__init__.py
@@ -20,7 +20,7 @@ def test_404(browser):
def test_about(browser):
browser.visit(url)
browser.click_link_by_text('about')
- assert browser.is_text_present('Why use searx?')
+ assert browser.is_text_present('Why use it?')
def test_preferences(browser):
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py
index d3498f51..9d83b759 100644
--- a/tests/unit/test_webapp.py
+++ b/tests/unit/test_webapp.py
@@ -96,7 +96,7 @@ class ViewsTestCase(SearxTestCase):
def test_search_empty_html(self):
result = self.app.post('/search', data={'q': ''})
self.assertEqual(result.status_code, 200)
- self.assertIn(b'<span class="instance pull-left"><a href="/">searx</a></span>', result.data)
+ self.assertIn(b'<span class="instance pull-left"><a href="/">searxng</a></span>', result.data)
def test_search_empty_json(self):
result = self.app.post('/search', data={'q': '', 'format': 'json'})
@@ -186,7 +186,7 @@ class ViewsTestCase(SearxTestCase):
def test_about(self):
result = self.app.get('/about')
self.assertEqual(result.status_code, 200)
- self.assertIn(b'<h1>About <a href="/">searx</a></h1>', result.data)
+ self.assertIn(b'<h1>About <a href="/">searxng</a></h1>', result.data)
def test_preferences(self):
result = self.app.get('/preferences')