Skip to content

Commit 8128b0b

Browse files
committed
TST: complex ops test correction
1 parent 02161ff commit 8128b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/computation/tests/test_eval.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def tearDown(self):
134134

135135
@slow
136136
def test_complex_cmp_ops(self):
137-
cmp_ops = ('not in', 'in', '!=', '==', '<=', '>=', '<', '>')
137+
cmp_ops = ('!=', '==', '<=', '>=', '<', '>')
138138
cmp2_ops = ('>', '<')
139139
for lhs, cmp1, rhs, binop, cmp2 in product(self.lhses, cmp_ops,
140140
self.rhses, self.bin_ops,

0 commit comments

Comments
 (0)