summaryrefslogtreecommitdiff
path: root/tests/test_functional.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_functional.py')
-rw-r--r--tests/test_functional.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_functional.py b/tests/test_functional.py
index 513823a05..3512981d2 100644
--- a/tests/test_functional.py
+++ b/tests/test_functional.py
@@ -65,9 +65,8 @@ class LintModuleOutputUpdate(testutils.LintModuleTest):
os.remove(self._test_file.expected_output)
return
with open(self._test_file.expected_output, "w", encoding="utf-8") as f:
- writer = csv.writer(f, dialect="test")
for line in actual_output:
- writer.writerow(line.to_csv())
+ print(":".join(line.to_csv()), file=f)
def get_tests():