From cc63f1a0f60d6c70f804f1062324402c5d5b274e Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Fri, 20 Dec 2024 23:00:16 +0100 Subject: [PATCH] Update vm_test.py --- src/starkware/cairo/lang/vm/vm_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/starkware/cairo/lang/vm/vm_test.py b/src/starkware/cairo/lang/vm/vm_test.py index 9e642693..117e0889 100644 --- a/src/starkware/cairo/lang/vm/vm_test.py +++ b/src/starkware/cairo/lang/vm/vm_test.py @@ -465,7 +465,7 @@ def test_skip_instruction_execution(): vm.run_context.pc += 2 vm.skip_instruction_execution = True %} -[ap] = [ap] + 1, ap++; // This intruction will not be executed. +[ap] = [ap] + 1, ap++; // This instruction will not be executed. %{ x = 1 %} [ap] = 10, ap++; """