From: tangkaiyuan Date: Tue, 12 Apr 2022 09:01:47 +0000 (+0800) Subject: [common][systeminfo][fix fail tcs of SystemInfoVideoSourceInfo] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c65e1573887d5474beb914b72d1c1bc58fcb840a;p=test%2Ftct%2Fweb%2Fapi.git [common][systeminfo][fix fail tcs of SystemInfoVideoSourceInfo] Change-Id: I455ed69873b7f3f82d38dd17966e7472ac9cd903 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(); });