From d368d35e0a9b086605f123fcdb1add7a9f64c820 Mon Sep 17 00:00:00 2001 From: Nedyalko Nikolov Date: Fri, 16 Dec 2016 12:16:12 +0200 Subject: [PATCH] Fixed tests tns-core-modules true plugin. --- tests/app/xml-declaration/xml-declaration-tests.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/app/xml-declaration/xml-declaration-tests.ts b/tests/app/xml-declaration/xml-declaration-tests.ts index fa8cc2b19..7b4f25f0a 100644 --- a/tests/app/xml-declaration/xml-declaration-tests.ts +++ b/tests/app/xml-declaration/xml-declaration-tests.ts @@ -126,7 +126,7 @@ export function test_loadWithOptionsFromTNS() { export function test_loadWithOptionsFromTNSPath() { var v = builder.load({ - path: "tns_modules/ui/label", + path: "tns_modules/tns-core-modules/ui/label", name: "Label" }); @@ -139,7 +139,7 @@ export function test_loadWithAttributes() { var lColor = "#FF0000"; // red var v = builder.load({ - path: "tns_modules/ui/label", + path: "tns_modules/tns-core-modules/ui/label", name: "Label", attributes: { text: lText, @@ -517,7 +517,7 @@ export function test_parse_ShouldParseCustomComponentWithoutXml() { }; export function test_parse_ShouldParseCustomComponentWithoutXmlFromTNSModules() { - var p = builder.parse(''); + var p = builder.parse(''); var ctrl = p.content; TKUnit.assert(ctrl instanceof Label, "Expected result: custom control is defined!; Actual result: " + ctrl);