Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Eads committed Sep 15, 2016
1 parent 9178aed commit 53c8f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_paratext.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def run_case(self, num_rows, num_cats, num_floats, num_ints, num_threads):
expected, types_df = paratext.testing.generate_mixed_frame(num_rows, num_floats, num_cats, num_ints)
with generate_tempfilename() as fn:
logging.debug("filename: %s" % fn)
paratext.serial.save_frame(fn, expected, allow_quoted_newlines=True)
paratext.serial.save_frame(fn, expected, allow_quoted_newlines=True, out_encoding='utf-8')
actual = paratext.load_csv_to_pandas(fn, allow_quoted_newlines=True, out_encoding='utf-8', num_threads=num_threads)
assert_dictframe_almost_equal(actual, expected)

Expand Down

0 comments on commit 53c8f5c

Please sign in to comment.