From 06a2b5c3c0bba7a5a8679d489f0cd3efeeed4119 Mon Sep 17 00:00:00 2001 From: knj Date: Tue, 9 Jan 2024 10:26:32 +0100 Subject: [PATCH] fix path to windows binary in conftest.py --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 4b38ef776a..5f7ed04a82 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -422,7 +422,7 @@ class DecoderFrontend: system = platform.system() if system == "Windows": - eid_path = "./scripts/tools/Windows/eid-xor.exe" + eid_path = "./scripts/tools/Win32/eid-xor.exe" elif system == "Linux": eid_path = "./scripts/tools/Linux/eid-xor" elif system == "Darwin": -- GitLab