summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2021-09-13 12:40:47 +0000
committerGitHub <noreply@github.com>2021-09-13 12:40:47 +0000
commitaba3566fbd1efa3b6f2e1302feddca3e72a85fde (patch)
treeba5ad02b2c1a41701acf507c34bec1816bb65e0d /tests
parent823a2fc7926441ba4375d74340a7ab08ac85ef9d (diff)
parentecb7e73e039cf805c31764d148daae15e91389a5 (diff)
Merge pull request #318 from return42/fix-doc-brand
[brand] docs - normalize project name to SearXNG
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_webapp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py
index c5ec1ca97..69af9be35 100644
--- a/tests/unit/test_webapp.py
+++ b/tests/unit/test_webapp.py
@@ -99,7 +99,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="/">searxng</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'})