Skip to content

Commit b990d7f

Browse files
update pandas-dev#47578 for regression fix
1 parent 6e0c5b7 commit b990d7f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bisect/47578.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@
1212
print(result)
1313

1414
expected = pd.DataFrame({"var": [np.nan, 10]}, index=[1, 2])
15-
pd.testing.assert_frame_equal(result, expected)
15+
try:
16+
pd.testing.assert_frame_equal(result, expected)
17+
except AssertionError as e:
18+
print(e)
19+
else:
20+
exit(1)

0 commit comments

Comments
 (0)