diff options
Diffstat (limited to 'tests/bash/run_tests.py')
-rw-r--r-- | tests/bash/run_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bash/run_tests.py b/tests/bash/run_tests.py index d18ecf0..b37f5fc 100644 --- a/tests/bash/run_tests.py +++ b/tests/bash/run_tests.py @@ -1,6 +1,6 @@ import pytest import pathlib -import tests.bash.parser as parser +import plugins.agl_test_log as log from plugins.agl_test_ptest_base import PTESTBase class BashBase(PTESTBase): @@ -9,7 +9,7 @@ class BashBase(PTESTBase): def log_process(self): log_file = self.get_logfile() - self.case_info_list = parser.log_parse(log_file) + self.case_info_list = log.log_process_gnu(log_file) def precheck(self): path_bash = pathlib.Path("/usr/bin/bash") |