From: j-h.choi Date: Wed, 9 Jun 2021 05:00:44 +0000 (+0900) Subject: Fixed typo in launcher_TC X-Git-Tag: submit/tizen/20210623.065708~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5b18d2a0819d7cd8d8b83f962f9b547a5abf52d;p=platform%2Fcore%2Fdotnet%2Flauncher.git Fixed typo in launcher_TC Change-Id: Ic44ca7c3af9ab5503809127c7c6501086806c293 --- 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}"