From 3a80949ee75b9783ad9b3b861d6ad5b486464d1e Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Fri, 15 May 2015 13:37:28 +0300 Subject: [PATCH] test fixed --- apps/tests/xml-declaration/xml-declaration-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tests/xml-declaration/xml-declaration-tests.ts b/apps/tests/xml-declaration/xml-declaration-tests.ts index fea769541..a22ee3190 100644 --- a/apps/tests/xml-declaration/xml-declaration-tests.ts +++ b/apps/tests/xml-declaration/xml-declaration-tests.ts @@ -135,7 +135,7 @@ export function test_parse_ShouldParsePlatofmrSpecificProperties() { var tf = p.content; if(platform.device.os === platform.platformNames.ios) { - TKUnit.assert(tf.editable === true, "Expected result: false; Actual result: " + tf.editable + "; type: " + typeof (tf.editable)); + TKUnit.assert(tf.editable === true, "Expected result: true; Actual result: " + tf.editable + "; type: " + typeof (tf.editable)); } else { TKUnit.assert(tf.editable === false, "Expected result: false; Actual result: " + tf.editable + "; type: " + typeof (tf.editable)); }