Skip to content

Commit bbb1368

Browse files
committed
Tweak test case
1 parent 67f33dd commit bbb1368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/test/test_emitfunc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ def test_inc_ref_int_literal(self) -> None:
820820
for x in -5, 0, 1, 5, 255, 256:
821821
b = LoadLiteral(x, object_rprimitive)
822822
self.assert_emit([b, IncRef(b)], "" if HAVE_IMMORTAL else "CPy_INCREF(cpy_r_r0);")
823-
for x in -6, 257:
823+
for x in -1123355, -6, 257, 123235345:
824824
b = LoadLiteral(x, object_rprimitive)
825825
self.assert_emit([b, IncRef(b)], "CPy_INCREF(cpy_r_r0);")
826826

0 commit comments

Comments
 (0)