From b5b18d2a0819d7cd8d8b83f962f9b547a5abf52d Mon Sep 17 00:00:00 2001 From: "j-h.choi" Date: Wed, 9 Jun 2021 14:00:44 +0900 Subject: [PATCH] Fixed typo in launcher_TC Change-Id: Ic44ca7c3af9ab5503809127c7c6501086806c293 --- tests/TCs/6_TOOL/TOOL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TCs/6_TOOL/TOOL.py b/tests/TCs/6_TOOL/TOOL.py index ab3c70c..c879877 100755 --- a/tests/TCs/6_TOOL/TOOL.py +++ b/tests/TCs/6_TOOL/TOOL.py @@ -41,7 +41,7 @@ def TC_02(): len1 = len(lines1) raw = cmd(f"shell find {FRAMEWORK_DIR} -name *.dll -not -name *.ni.dll") lines2 = [l for l in raw.splitlines() if "/ref/" not in l] - len2 = lne(lines2) + len2 = len(lines2) if len1 != len2: return f"FAIL : The number of .dll({len2}) and .ni.dll({len1}) must match in the {FRAMEWORK_DIR}" -- 2.7.4