From cee64b74733a127c1e0b7977d058735f61e2c157 Mon Sep 17 00:00:00 2001 From: HLFH Date: Wed, 29 Sep 2021 18:53:58 +0100 Subject: [PATCH] fix SearxngRobotLayer --- .gitignore | 2 ++ tests/robot/__main__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fd152a347..2fb747553 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,5 @@ dist/ local/ gh-pages/ *.egg-info/ + +.vscode/ diff --git a/tests/robot/__main__.py b/tests/robot/__main__.py index 14538d11d..bfd3ee764 100644 --- a/tests/robot/__main__.py +++ b/tests/robot/__main__.py @@ -63,7 +63,7 @@ def run_robot_tests(tests): def main(): - test_layer = SearxRobotLayer() + test_layer = SearxngRobotLayer() try: test_layer.setUp() run_robot_tests([getattr(test_webapp, x) for x in dir(test_webapp) if x.startswith('test_')])