diff --git a/daemon/test_daemon_comm.py b/daemon/test_daemon_comm.py index a922ea6..19da0ed 100755 --- a/daemon/test_daemon_comm.py +++ b/daemon/test_daemon_comm.py @@ -167,8 +167,8 @@ class Test: def find_and_parse_testcase_files(self): """Find and parse *.tc files""" basedir = os.path.dirname(os.path.realpath(__file__)) - pattern = os.path.join(basedir, '**', 'comm', '*.tc') - tc_files = glob.glob(pattern, recursive=True) + pattern = os.path.join(basedir, 'tests', '**', '*.tc') + tc_files = sorted(glob.glob(pattern, recursive=True)) for tc_file in tc_files: with open(tc_file) as tc_fd: