summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_standalone_searx.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/test_standalone_searx.py b/tests/unit/test_standalone_searx.py
index c00f033b6..ddf140799 100644
--- a/tests/unit/test_standalone_searx.py
+++ b/tests/unit/test_standalone_searx.py
@@ -2,6 +2,7 @@
"""Test utils/standalone_searx.py"""
import datetime
import importlib.util
+import io
import sys
from mock import Mock, patch
@@ -29,7 +30,9 @@ class StandaloneSearx(SearxTestCase):
sas = get_standalone_searx_module()
with patch.object(sys, 'argv', ['standalone_searx']), \
self.assertRaises(SystemExit):
+ sys.stderr = io.StringIO()
sas.parse_argument()
+ sys.stdout = sys.__stderr__
def test_parse_argument_basic_args(self):
"""Test parse argument with basic args."""