diff --git a/tests/testing/tests.py b/tests/testing/tests.py index 98c9a660a1..29bfa78b66 100755 --- a/tests/testing/tests.py +++ b/tests/testing/tests.py @@ -38,7 +38,7 @@ from abc import ABCMeta, abstractmethod import os from collections import namedtuple -from units import * +from .units import * from .helpers import FileIgnoreList from .results import TestResult import shutil diff --git a/tests/testing/units.py b/tests/testing/units.py index 0139b31b8e..9c9c1e5bf4 100644 --- a/tests/testing/units.py +++ b/tests/testing/units.py @@ -45,8 +45,8 @@ import subprocess import sys import traceback -from results import UnitResult -from helpers import * +from .results import UnitResult +from .helpers import * _test_base = os.path.join(os.path.dirname(__file__), "..")