summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2022-02-27 10:36:55 +0100
committerGitHub <noreply@github.com>2022-02-27 10:36:55 +0100
commitafde954df8fedc0c9d21d1cc75407ecafed020ab (patch)
tree987bdc91eb880d9daa9276d16aa6ab8867ba0cbf /tests
parent3408d061aab9abc6168fec9bbc6deab71b236dac (diff)
parente2a5dddf8e546821759f22f9f9097f33a80ba132 (diff)
Merge pull request #689 from mrpaulblack/images-flexbox
[simple theme] use flexbox instead of js for positioning images
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_webapp.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py
index a50bd5c78..aed6f2dd4 100644
--- a/tests/unit/test_webapp.py
+++ b/tests/unit/test_webapp.py
@@ -33,7 +33,8 @@ class ViewsTestCase(SearxTestCase):
'engine': 'startpage',
'parsed_url': ParseResult(
scheme='http', netloc='first.test.xyz', path='/', params='', query='', fragment=''
- ), # noqa
+ ),
+ 'template': 'default.html',
},
{
'content': 'second test content',
@@ -43,7 +44,8 @@ class ViewsTestCase(SearxTestCase):
'engine': 'youtube',
'parsed_url': ParseResult(
scheme='http', netloc='second.test.xyz', path='/', params='', query='', fragment=''
- ), # noqa
+ ),
+ 'template': 'default.html',
},
]