Skip to content

Commit

Permalink
pandas-dev#34131 fix one test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierLuG committed Jun 13, 2020
1 parent b73fae0 commit bbf80ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandas/tests/frame/test_arithmetic.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,8 @@ def test_floordiv_axis0_numexpr_path(self, opname):

arr = np.arange(_MIN_ELEMENTS + 100).reshape(_MIN_ELEMENTS // 100 + 1, -1) * 100
df = pd.DataFrame(arr)
assert _USE_NUMEXPR
if _NUMEXPR_INSTALLED:
assert _USE_NUMEXPR
df["C"] = 1.0

ser = df[0]
Expand Down

0 comments on commit bbf80ce

Please sign in to comment.