From fa1ef9a07b79ab740c127bac0d11b8315a5130ff Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sun, 18 Jun 2023 16:43:48 +0200 Subject: [mod] move some code from webapp module to webutils module (no functional change) Over the years the webapp module became more and more a mess. To improve the modulaization a little this patch moves some implementations from the webapp module to webutils module. HINT: this patch brings non functional change Signed-off-by: Markus Heiser --- tests/unit/test_webutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/unit/test_webutils.py') diff --git a/tests/unit/test_webutils.py b/tests/unit/test_webutils.py index acf1aeeb7..244d2b180 100644 --- a/tests/unit/test_webutils.py +++ b/tests/unit/test_webutils.py @@ -64,7 +64,7 @@ class TestWebUtils(SearxTestCase): class TestUnicodeWriter(SearxTestCase): def setUp(self): - self.unicode_writer = webutils.UnicodeWriter(mock.MagicMock()) + self.unicode_writer = webutils.CSVWriter(mock.MagicMock()) def test_write_row(self): row = [1, 2, 3] -- cgit v1.2.3