Skip to content

Commit bb77b0b

Browse files
Fix failing test, the separator in the data is actually a tab, not a comma
1 parent 29e54db commit bb77b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/parser/test_dtypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def test_categorical_dtype_utf16(all_parsers, csv_dir_path):
192192
pth = os.path.join(csv_dir_path, "utf16_ex.txt")
193193
parser = all_parsers
194194
encoding = "utf-16"
195-
sep = ","
195+
sep = "\t"
196196

197197
expected = parser.read_csv(pth, sep=sep, encoding=encoding)
198198
expected = expected.apply(Categorical)

0 commit comments

Comments
 (0)