Closed
Description
Pandas version checks
-
I have checked that this issue has not already been reported.
-
I have confirmed this bug exists on the latest version of pandas.
-
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
# interval
expected = 0
result = indexer_sl(ser)[Interval(1, 5)]
result == expected
The final line, result == expected
should probably be assert result == expected
or tm.assert_series_equal(expected, result)
.
Issue Description
Values are compared in the unit tests, but the result of the comparison is discarded instead of asserted.
Expected Behavior
An assertion
Installed Versions
v2.2.0.dev0-383-g746e5eee86