Skip to content
Prev Previous commit
Next Next commit
modify test error
  • Loading branch information
hshimizu77 committed Apr 26, 2014
commit 6bd832160bce55f1b03304f0d41d5097f5335dfd
4 changes: 2 additions & 2 deletions pandas/io/tests/test_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1823,8 +1823,8 @@ def test_utf16_example(self):
self.assertEquals(len(result), 50)

def test_read_csv_example_in_windows_filesystem(self):
path = b'\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e\xe3\x83\x95\xe3\x82\xa1\xe3\x82\xa4\xe3\x83\xab\xe5\x90\x8d\xe3\x83\x86\xe3\x82\xb9\xe3\x83\x88_read_csv_in_win_filesystem.csv'
path = tm.get_data_path(path.decode())
buf = b'\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e\xe3\x83\x95\xe3\x82\xa1\xe3\x82\xa4\xe3\x83\xab\xe5\x90\x8d\xe3\x83\x86\xe3\x82\xb9\xe3\x83\x88_read_csv_in_win_filesystem.csv'
path = tm.get_data_path(buf.decode('utf-8')
self.read_csv(path)

def test_converters_corner_with_nas(self):
Expand Down