diff options
Diffstat (limited to 'tests/LTP/agl_test_ltp_base.py')
-rw-r--r-- | tests/LTP/agl_test_ltp_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/LTP/agl_test_ltp_base.py b/tests/LTP/agl_test_ltp_base.py index 9c8f5bc..f8bd708 100644 --- a/tests/LTP/agl_test_ltp_base.py +++ b/tests/LTP/agl_test_ltp_base.py @@ -11,12 +11,12 @@ class LTPBase(AGLBaseTest): RUNLTP = LTPDIR + "runltp" LTPTEST = LTPDIR + "runtest/" - #Test name without the prefix of "ltp/" + #Test name without the prefix of "LTP/" test_name: str def __init__(self, test_name: str): self.test_name = test_name - super().__init__(name = ("ltp/" + test_name)) + super().__init__(name = ("LTP/" + test_name)) #Check and clean exit log tmp_log_dir = self.get_log_path() |