From: tangkaiyuan Date: Tue, 12 Apr 2022 08:41:00 +0000 (+0800) Subject: [common][systeminfo][fix fail tcs of SystemInfoVideoSourceInfo] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F87%2F273687%2F1;p=test%2Ftct%2Fweb%2Fapi.git [common][systeminfo][fix fail tcs of SystemInfoVideoSourceInfo] Change-Id: Ic5e70b347a0f9486c08f8841f773537accc0265b Signed-off-by: tangkaiyuan --- diff --git a/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_extend.html b/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_extend.html index 20399aa2b..5ab3740bb 100755 --- a/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_extend.html +++ b/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_extend.html @@ -44,7 +44,7 @@ t.step(function () { if(source.connected.length != 0){ check_extensibility(source.connected[0]); }else if(source.disconnected.length != 0){ - check_extensibility(source.connected[0]); + check_extensibility(source.disconnected[0]); } t.done(); }); diff --git a/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_type_attribute.html b/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_type_attribute.html index ca6a5f886..b3b1f68c9 100755 --- a/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_type_attribute.html +++ b/common/tct-systeminfo-tizen-tests/systeminfo/SystemInfoVideoSourceInfo_type_attribute.html @@ -47,7 +47,7 @@ t.step(function () { check_readonly(source.connected[0], "type", source.connected[0].type, "string", null); }else if(source.disconnected.length != 0){ assert_own_property(source.disconnected[0], "type", "SystemInfoVideoSourceInfo doesn't own type property."); - check_readonly(source.disconnected[0], "type", source.connected[0].type, "string", null); + check_readonly(source.disconnected[0], "type", source.disconnected[0].type, "string", null); } t.done(); });