aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_compiler_codegen.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_compiler_codegen.py')
-rw-r--r--Lib/test/test_compiler_codegen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compiler_codegen.py b/Lib/test/test_compiler_codegen.py
index 6d7731ddba0..b5d1e2f9e47 100644
--- a/Lib/test/test_compiler_codegen.py
+++ b/Lib/test/test_compiler_codegen.py
@@ -21,7 +21,7 @@ class IsolatedCodeGenTests(CodegenTestCase):
('TO_BOOL', 0, 1),
('POP_JUMP_IF_FALSE', false_lbl := self.Label(), 1),
('LOAD_CONST', 1, 1),
- ('JUMP', exit_lbl := self.Label()),
+ ('JUMP_NO_INTERRUPT', exit_lbl := self.Label()),
false_lbl,
('LOAD_CONST', 2, 1),
exit_lbl,