Skip to content

Commit 6c98c24

Browse files
fix assert
1 parent 697323b commit 6c98c24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_capi/test_opt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1580,7 +1580,7 @@ def testfunc(n):
15801580
self.assertIsNotNone(ex)
15811581
uops = get_opnames(ex)
15821582
self.assertNotIn("_COMPARE_OP_INT", uops)
1583-
self.assertNotIn("_POP_TWO_LOAD_CONST_INLINE_BORROW", uops)
1583+
self.assertIn("_POP_TWO_LOAD_CONST_INLINE_BORROW", uops)
15841584

15851585
def global_identity(x):
15861586
return x

0 commit comments

Comments
 (0)