Skip to content

Commit

Permalink
test: Fix cleanup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 28, 2024
1 parent fb33cb5 commit d05f414
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand All @@ -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])
Expand Down

0 comments on commit d05f414

Please sign in to comment.