Fixed typo in launcher_TC
authorj-h.choi <j-h.choi@samsung.com>
Wed, 9 Jun 2021 05:00:44 +0000 (14:00 +0900)
committer조웅석/Common Platform Lab(SR)/Principal Engineer/삼성전자 <ws77.cho@samsung.com>
Wed, 9 Jun 2021 05:15:12 +0000 (14:15 +0900)
Change-Id: Ic44ca7c3af9ab5503809127c7c6501086806c293

tests/TCs/6_TOOL/TOOL.py

index ab3c70c..c879877 100755 (executable)
@@ -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}"