Skip to content

Commit

Permalink
RM-45 try fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantimjohn committed Apr 12, 2023
1 parent e9229d1 commit ab9a21d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/records/targets/test_fileobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ def test_move_from_dataframe_compressed_no_header_row(self,
quotechar='"',
quoting=1,
sep=',')
self.assertEqual(out, MoveResult(move_count=2, output_urls=None))
move_result_argument = MoveResultArgument(2, None)
self.assertEqual(out, MoveResult(move_result_argument))

@patch('records_mover.records.pandas.prep_df_for_csv_output')
@patch('records_mover.records.targets.fileobj.io')
Expand Down

0 comments on commit ab9a21d

Please sign in to comment.