fix SearxngRobotLayer

This commit is contained in:
HLFH 2021-09-29 18:53:58 +01:00
parent 325f3a891b
commit cee64b7473
No known key found for this signature in database
GPG key ID: 200A60A75D394102
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View file

@ -15,3 +15,5 @@ dist/
local/ local/
gh-pages/ gh-pages/
*.egg-info/ *.egg-info/
.vscode/

View file

@ -63,7 +63,7 @@ def run_robot_tests(tests):
def main(): def main():
test_layer = SearxRobotLayer() test_layer = SearxngRobotLayer()
try: try:
test_layer.setUp() test_layer.setUp()
run_robot_tests([getattr(test_webapp, x) for x in dir(test_webapp) if x.startswith('test_')]) run_robot_tests([getattr(test_webapp, x) for x in dir(test_webapp) if x.startswith('test_')])