From 5a20d9ecd198068fbacc38876afb4f0d9a8c0aa8 Mon Sep 17 00:00:00 2001 From: Michael Pfitzner Date: Fri, 14 Dec 2018 22:18:21 +0100 Subject: change the html in test_startpage.py to look more like the actual startpage site --- tests/unit/engines/test_startpage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/unit') diff --git a/tests/unit/engines/test_startpage.py b/tests/unit/engines/test_startpage.py index bdb3356b7..4a7ca5b6f 100644 --- a/tests/unit/engines/test_startpage.py +++ b/tests/unit/engines/test_startpage.py @@ -31,14 +31,14 @@ class TestStartpageEngine(SearxTestCase): self.assertEqual(startpage.response(response), []) html = """ -
+
  • This should be the title

    -

    +

    This should be the content.

    @@ -56,7 +56,7 @@ class TestStartpageEngine(SearxTestCase): Mis en surbrillance

    -
  • + """ response = mock.Mock(text=html.encode('utf-8')) results = startpage.response(response) -- cgit v1.2.3 From 83a06d276de3cbaa0dabc9eca990e1298140898a Mon Sep 17 00:00:00 2001 From: Michael Pfitzner Date: Fri, 14 Dec 2018 22:29:57 +0100 Subject: change rest of test_startpage.py --- tests/unit/engines/test_startpage.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/unit') diff --git a/tests/unit/engines/test_startpage.py b/tests/unit/engines/test_startpage.py index 4a7ca5b6f..4a8a443dd 100644 --- a/tests/unit/engines/test_startpage.py +++ b/tests/unit/engines/test_startpage.py @@ -67,14 +67,14 @@ class TestStartpageEngine(SearxTestCase): self.assertEqual(results[0]['content'], 'This should be the content.') html = """ -
    +
  • This should be the title

    -

    +

    This should be the content.

    @@ -92,20 +92,20 @@ class TestStartpageEngine(SearxTestCase): Mis en surbrillance

    -
  • -
    + +
  • -

    +

    This should be the content.

    www.speedtest.net/fr/

    -
  • - + """ response = mock.Mock(text=html.encode('utf-8')) results = startpage.response(response) -- cgit v1.2.3