From db3cf3f690668468ced8363719b2586bc261f735 Mon Sep 17 00:00:00 2001 From: Jaaaky <43599380+Jaaaky@users.noreply.github.com> Date: Tue, 28 Dec 2021 22:04:54 +0300 Subject: [PATCH] Fix Python3 test module path --- TestScripts/Python3 Tests/Tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestScripts/Python3 Tests/Tests.py b/TestScripts/Python3 Tests/Tests.py index 41e2bd4e..56e97e84 100644 --- a/TestScripts/Python3 Tests/Tests.py +++ b/TestScripts/Python3 Tests/Tests.py @@ -4,7 +4,7 @@ import time from importlib.machinery import SourceFileLoader -xpc = SourceFileLoader('xpc', '../../Python3/src/xpc.py').load_module() +xpc = SourceFileLoader('xpc', '../../Python3/src/xpc/__init__.py').load_module() class XPCTests(unittest.TestCase): """Tests the functionality of the XPlaneConnect class."""