Update test base class with proper namespace on inserted node. Signed-off-by: Erik de Bruin <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/63050278 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/63050278 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/63050278 Branch: refs/heads/VF2JS Commit: 63050278cf92240e6c1e834c49eb0b90dce5f04b Parents: 2926ee6 Author: Erik de Bruin <[email protected]> Authored: Mon Jun 30 12:07:29 2014 +0200 Committer: Erik de Bruin <[email protected]> Committed: Mon Jun 30 12:07:29 2014 +0200 ---------------------------------------------------------------------- .../src/org/apache/flex/compiler/internal/test/VF2JSTestBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/63050278/compiler.jx.tests/src/org/apache/flex/compiler/internal/test/VF2JSTestBase.java ---------------------------------------------------------------------- diff --git a/compiler.jx.tests/src/org/apache/flex/compiler/internal/test/VF2JSTestBase.java b/compiler.jx.tests/src/org/apache/flex/compiler/internal/test/VF2JSTestBase.java index 048f76b..0b08818 100644 --- a/compiler.jx.tests/src/org/apache/flex/compiler/internal/test/VF2JSTestBase.java +++ b/compiler.jx.tests/src/org/apache/flex/compiler/internal/test/VF2JSTestBase.java @@ -97,7 +97,7 @@ public class VF2JSTestBase extends TestBase int wrapLevel) { if (wrapLevel >= WRAP_LEVEL_NODE) - code = "<s:Button " + code + "></s:Button>"; + code = "<vf2js:Button " + code + "></vf2js:Button>"; if (wrapLevel >= WRAP_LEVEL_DOCUMENT) code = ""
