diff --git a/tests/app/xml-declaration/xml-declaration-tests.ts b/tests/app/xml-declaration/xml-declaration-tests.ts index 1ca9ea566..13a194f54 100644 --- a/tests/app/xml-declaration/xml-declaration-tests.ts +++ b/tests/app/xml-declaration/xml-declaration-tests.ts @@ -127,7 +127,7 @@ export function test_loadWithOptionsFromTNS() { export function test_loadWithOptionsFromTNSPath() { var v = builder.load({ - path: "tns_modules/ui/label", + path: "ui/label", name: "Label" }); @@ -140,7 +140,7 @@ export function test_loadWithAttributes() { var lColor = "#FF0000"; // red var v = builder.load({ - path: "tns_modules/ui/label", + path: "ui/label", name: "Label", attributes: { text: lText, @@ -518,7 +518,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);