Skip to content

Commit

Permalink
Update python/cudf/cudf/tests/test_csv.py
Browse files Browse the repository at this point in the history
Co-authored-by: GALI PREM SAGAR <[email protected]>
  • Loading branch information
karthikeyann and galipremsagar authored Oct 31, 2022
1 parent 6710b47 commit 99eedc0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions python/cudf/cudf/tests/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,9 +789,6 @@ def test_csv_reader_bools_custom():
true_values=trues,
false_values=falses,
)
assert len(df.columns) == 2
assert df["text"].dtype == np.dtype("object")
assert df["int"].dtype == np.dtype("int64")
expected = pd.read_csv(
StringIO(buffer),
names=names,
Expand All @@ -800,7 +797,7 @@ def test_csv_reader_bools_custom():
true_values=trues,
false_values=falses,
)
assert_eq(df, expected)
assert_eq(df, expected, check_dtype=True)


def test_csv_reader_bools_NA():
Expand Down

0 comments on commit 99eedc0

Please sign in to comment.