diff options
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r-- | Lib/test/test_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 7ebe837fce..2e1cb5a671 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -838,7 +838,7 @@ if 1: instructions = [opcode.opname for opcode in opcodes] self.assertNotIn('LOAD_METHOD', instructions) self.assertIn('LOAD_ATTR', instructions) - self.assertIn('PRECALL_FUNCTION', instructions) + self.assertIn('PRECALL', instructions) def test_lineno_procedure_call(self): def call(): |