From 785aa738f57ed32d42fdfd27d8b41f7e0a8e630d Mon Sep 17 00:00:00 2001 From: momodaka <463435681@qq.com> Date: Thu, 9 Nov 2023 20:42:22 +0800 Subject: [PATCH] [fix]: fix typo --- 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 35863310..29f96531 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++; """