Skip to content

Commit 81d9c7f

Browse files
committed
Test: skip checking names due to inconsistencies between OSes
1 parent e0b1e72 commit 81d9c7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/computation/test_eval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def test_using_numpy(self):
742742
df = Series([0.2, 1.5, 2.8], name="a").to_frame()
743743
res = df.eval("@np.floor(a)")
744744
expected = np.floor(df["a"])
745-
tm.assert_series_equal(expected, res)
745+
tm.assert_series_equal(expected, res, check_names=False)
746746

747747

748748
# -------------------------------------

0 commit comments

Comments
 (0)