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_')])