[Non-ACR][DevicePolicyManager][Fix wrong testcase] 82/202982/1
authoryeji kim <yeji01.kim@samsung.com>
Mon, 8 Apr 2019 09:16:33 +0000 (18:16 +0900)
committeryeji kim <yeji01.kim@samsung.com>
Mon, 8 Apr 2019 09:16:33 +0000 (18:16 +0900)
Change-Id: I3e71d94aee9f6cdaa3bbd894192a69cfb31feb5a
Signed-off-by: yeji kim <yeji01.kim@samsung.com>
tct-suite-vs/Tizen.DevicePolicyManager.Tests/testcase/TSPasswordPolicy.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 61750a4..1d8f27d
@@ -135,16 +135,16 @@ namespace Tizen.Security.DevicePolicyManager.Tests
 
         [Test]
         [Category("P1")]
-        [Description("Check whether MinimunLength returns expected value or not.")]
-        [Property("SPEC", "Tizen.Security.DevicePolicyManager.PasswordPolicy.MinimunLength A")]
+        [Description("Check whether MinimumLength returns expected value or not.")]
+        [Property("SPEC", "Tizen.Security.DevicePolicyManager.PasswordPolicy.MinimumLength A")]
         [Property("SPEC_URL", "-")]
         [Property("CRITERIA", "PRO")]
         [Property("AUTHOR", "Yeji Kim, yeji01.kim@samsung.com")]
-        public void MinimunLength_READ_ONLY()
+        public void MinimumLength_READ_ONLY()
         {
-            Assert.IsInstanceOf<int>(_passwordPolicy.MinimumRequiredComplexChars);
-            Assert.IsTrue(_passwordPolicy.MinimumRequiredComplexChars == 0,
-                "The value of MinimunLength property should match value from getter");
+            Assert.IsInstanceOf<int>(_passwordPolicy.MinimumLength);
+            Assert.IsTrue(_passwordPolicy.MinimumLength == 0,
+                "The value of MinimumLength property should match value from getter");
         }
 
         [Test]