From d40d4c93b72617c75271939c92179e9505c7675d Mon Sep 17 00:00:00 2001 From: starnakin Date: Wed, 17 Dec 2025 06:08:52 -0600 Subject: [PATCH] fix: typo --- test/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.py b/test/test.py index 64f1ad6..de23c42 100644 --- a/test/test.py +++ b/test/test.py @@ -6,14 +6,14 @@ import shutil import thread_manager import parsing -import exectution +import execution excutable: str = sys.argv[1] with open('test/tests.json', 'r') as file: tests: dict[str, dict] = json.load(file) -tester: dict[str, Callable[[str, dict], None]] = {"parsing": parsing.test_parsing, "excution": exectution.test_excution} +tester: dict[str, Callable[[str, dict], None]] = {"parsing": parsing.test_parsing, "excution": execution.test_excution} shutil.rmtree("log")