fix: typo
This commit is contained in:
@@ -6,14 +6,14 @@ import shutil
|
|||||||
|
|
||||||
import thread_manager
|
import thread_manager
|
||||||
import parsing
|
import parsing
|
||||||
import exectution
|
import execution
|
||||||
|
|
||||||
excutable: str = sys.argv[1]
|
excutable: str = sys.argv[1]
|
||||||
|
|
||||||
with open('test/tests.json', 'r') as file:
|
with open('test/tests.json', 'r') as file:
|
||||||
tests: dict[str, dict] = json.load(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")
|
shutil.rmtree("log")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user