From d05f4144fabe8b97dca36bd653a0bc4b9c663a21 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sun, 28 Apr 2024 00:33:07 -0400 Subject: [PATCH] test: Fix cleanup tests --- tests/test_cleanup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_cleanup.py b/tests/test_cleanup.py index 3915a8c1d..4fe333249 100644 --- a/tests/test_cleanup.py +++ b/tests/test_cleanup.py @@ -12,7 +12,7 @@ def test_fix_rows(self): ['abc'], ['4', '5'], ] - fixed = join_rows(start) + fixed = join_rows(start, ' ') self.assertEqual(4, len(fixed)) self.assertEqual(start[0][0], fixed[0]) self.assertEqual(start[0][1], fixed[1]) @@ -23,7 +23,7 @@ def test_real_world_join_fail(self): start = [['168772', '1102', '$0.23 TO $0.72', 'HOUR', '1.5%'], ['GROSS', '1.5% '], ['GROSS', '430938']] - fixed = join_rows(start) + fixed = join_rows(start, ' ') self.assertEqual(7, len(fixed)) self.assertEqual(start[0][0], fixed[0]) self.assertEqual(start[0][1], fixed[1])