We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe8541 commit f0469e6Copy full SHA for f0469e6
tests/integ/modin/test_faster_pandas.py
@@ -115,13 +115,12 @@ def test_read_filter_join_on_index(session):
115
116
# compare results
117
# first ensure that indexes are the same
118
- assert_index_equal(snow_result.index, native_result.index, exact=False)
+ assert_index_equal(snow_result.index, native_result.index)
119
# then compare the data columns exclduing the index column
120
# (because row position assignement is not necessarily idential)
121
assert_frame_equal(
122
snow_result.to_pandas().sort_values(by="A").reset_index(drop=True),
123
native_result.sort_values(by="A").reset_index(drop=True),
124
- check_index_type=False,
125
)
126
127
0 commit comments