From 78a61cb25e14a63d3777120803ce413862d1d54c Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Mon, 29 Apr 2024 16:44:06 -0400 Subject: [PATCH] test: Remove unnecessary tearDown --- tests/test_utilities/test_csvclean.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_utilities/test_csvclean.py b/tests/test_utilities/test_csvclean.py index 397249284..dbd3e7fd2 100644 --- a/tests/test_utilities/test_csvclean.py +++ b/tests/test_utilities/test_csvclean.py @@ -12,11 +12,6 @@ class TestCSVClean(CSVKitTestCase, EmptyFileTests): Utility = CSVClean - def tearDown(self): - output_file = "stdin_out.csv" - if os.path.isfile(output_file): - os.remove(output_file) - def assertCleaned(self, args, output_rows, error_rows=[]): output_file = io.StringIO() error_file = io.StringIO()