Skip to content

Commit ad39435

Browse files
committed
Fixing opencsv test
1 parent a697e2d commit ad39435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_athena_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,4 +483,4 @@ def test_opencsv_serde(path, glue_table, glue_database, use_threads, ctas_approa
483483
table=glue_table, database=glue_database, use_threads=use_threads, ctas_approach=ctas_approach
484484
)
485485
df = df.applymap(lambda x: x.replace('"', "")).convert_dtypes()
486-
assert df.equals(df2)
486+
assert df.equals(df2.sort_values(by=list(df2)).reset_index(drop=True))

0 commit comments

Comments
 (0)