You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/04/18 15:26:47 UTC

[24/50] git commit: [flex-asjs] [refs/heads/feature/maven-migration] - Tweaked the test a bit to have nicer output

Tweaked the test a bit to have nicer output


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/90c70cea
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/90c70cea
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/90c70cea

Branch: refs/heads/feature/maven-migration
Commit: 90c70cea45047fd630a0bd7d916c75ef94dc230e
Parents: 5d2d0dd
Author: Harbs <ha...@in-tools.com>
Authored: Sun Apr 10 16:03:46 2016 +0300
Committer: Harbs <ha...@in-tools.com>
Committed: Sun Apr 10 16:03:46 2016 +0300

----------------------------------------------------------------------
 manualtests/XMLTest/src/MyInitialView.mxml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/90c70cea/manualtests/XMLTest/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/XMLTest/src/MyInitialView.mxml b/manualtests/XMLTest/src/MyInitialView.mxml
index 8d2fff5..e57a0fc 100644
--- a/manualtests/XMLTest/src/MyInitialView.mxml
+++ b/manualtests/XMLTest/src/MyInitialView.mxml
@@ -47,8 +47,9 @@ limitations under the License.
                 var m:int;
                 var xml1:XML = <foo baz="true"/>;
                 trace(xml1.toXMLString());
+                trace(xml1.toXMLString() == '<foo baz="true"/>');
                 var baz:XMLList = xml1.@baz;
-                trace(xml1.@baz.toString());
+                trace("baz: " + xml1.@baz.toString() + " //true");
 
             }
 		]]>