|
@@ -9,7 +9,7 @@ url = "http://localhost:11111/"
|
|
|
def test_index(browser):
|
|
|
# Visit URL
|
|
|
browser.visit(url)
|
|
|
- assert browser.is_text_present('searxng')
|
|
|
+ assert browser.is_text_present('SearXNG')
|
|
|
|
|
|
|
|
|
def test_404(browser):
|
|
@@ -20,7 +20,7 @@ def test_404(browser):
|
|
|
|
|
|
def test_about(browser):
|
|
|
browser.visit(url)
|
|
|
- browser.links.find_by_text('searxng').click()
|
|
|
+ browser.links.find_by_text('SearXNG').click()
|
|
|
assert browser.is_text_present('Why use it?')
|
|
|
|
|
|
|