Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 authored Nov 21, 2024
1 parent becc262 commit aac021f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/pylibcudf/pylibcudf/tests/io/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,6 @@ def test_write_csv_na_rep(na_rep):
# Convert everything to string to make comparisons easier
str_result = sink_to_str(sink)

pd_result = pa_tbl.to_pandas().to_csv(
na_rep=na_rep, index=False
)
pd_result = pa_tbl.to_pandas().to_csv(na_rep=na_rep, index=False)

assert str_result == pd_result

0 comments on commit aac021f

Please sign in to comment.