summaryrefslogtreecommitdiff
path: root/searx/search/processors
diff options
context:
space:
mode:
Diffstat (limited to 'searx/search/processors')
-rw-r--r--searx/search/processors/online.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/search/processors/online.py b/searx/search/processors/online.py
index 0ceb0adf2..d79edd542 100644
--- a/searx/search/processors/online.py
+++ b/searx/search/processors/online.py
@@ -239,14 +239,14 @@ class OnlineProcessor(EngineProcessor):
'test': ['unique_results']
}
- if getattr(self.engine, 'lang', False):
+ if getattr(self.engine, 'supported_languages', []):
tests['lang_fr'] = {
'matrix': {'query': 'paris', 'lang': 'fr'},
- 'result_container': ['not_empty', ('has_lang', 'fr')],
+ 'result_container': ['not_empty', ('has_language', 'fr')],
}
tests['lang_en'] = {
'matrix': {'query': 'paris', 'lang': 'en'},
- 'result_container': ['not_empty', ('has_lang', 'en')],
+ 'result_container': ['not_empty', ('has_language', 'en')],
}
if getattr(self.engine, 'safesearch', False):