You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/07/20 01:09:38 UTC

[4/4] git commit: Adjust the code that locates alert content

Adjust the code that locates alert content


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/22a6f129
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/22a6f129
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/22a6f129

Branch: refs/heads/master
Commit: 22a6f129e46c69198f3d9b10c9db1b64bcfe850c
Parents: 8ae691c
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Jul 19 16:01:17 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri Jul 19 16:01:17 2013 -0700

----------------------------------------------------------------------
 .../org/apache/tapestry5/integration/TapestryCoreTestCase.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/22a6f129/tapestry-core/src/test/java/org/apache/tapestry5/integration/TapestryCoreTestCase.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/java/org/apache/tapestry5/integration/TapestryCoreTestCase.java b/tapestry-core/src/test/java/org/apache/tapestry5/integration/TapestryCoreTestCase.java
index eb97fbd..fb54010 100644
--- a/tapestry-core/src/test/java/org/apache/tapestry5/integration/TapestryCoreTestCase.java
+++ b/tapestry-core/src/test/java/org/apache/tapestry5/integration/TapestryCoreTestCase.java
@@ -58,7 +58,7 @@ public abstract class TapestryCoreTestCase extends SeleniumTestCase
         waitForCSSSelectedElementToAppear("[data-container-type=alerts] .alert");
 
         // Add the special "x" for the close button to the text.
-        assertText("css=[data-container-type=alerts] .alert", "\u00d7" + text);
+        assertText("css=[data-container-type=alerts] .alert span", text);
     }
 
 }