From: qunfang.lin Date: Wed, 17 Apr 2019 18:39:53 +0000 (+0800) Subject: [common][keymanager][fix the password-protected attribute name] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fe7750ff17127425addcbe80aa9f90c484ba9e1c;p=test%2Ftct%2Fweb%2Fapi.git [common][keymanager][fix the password-protected attribute name] Change-Id: Ib02f2a68460e5387e1b731f6a0b0e0005d738cae Signed-off-by: qunfang.lin --- diff --git a/common/tct-keymanager-tizen-tests/keymanager/KeyManager_getDataAliasList.html b/common/tct-keymanager-tizen-tests/keymanager/KeyManager_getDataAliasList.html index b17184c65..ce6d17024 100755 --- a/common/tct-keymanager-tizen-tests/keymanager/KeyManager_getDataAliasList.html +++ b/common/tct-keymanager-tizen-tests/keymanager/KeyManager_getDataAliasList.html @@ -62,8 +62,8 @@ t.step(function () { "The return value of getDataAliasList() is not in the data alias list."); assert_in_array(dataAliasList[1].name, [data_name_one, data_name_two], "The return value of getDataAliasList() is not in the data alias list."); - assert_false(dataAliasList[0].isPasswordProtected, "The value of property password-protected value is false."); - assert_true(dataAliasList[1].isPasswordProtected, "The value of property password-protected value is true."); + assert_false(dataAliasList[0].isProtected, "The value of property password-protected value is false."); + assert_true(dataAliasList[1].isProtected, "The value of property password-protected value is true."); t.done(); });