You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2020/07/05 18:34:45 UTC

[tapestry-5] branch master updated: TAP5-2631: fixing broken test

This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new ab93118  TAP5-2631: fixing broken test
ab93118 is described below

commit ab931188ee44cfbec627007ecbca7496e593153d
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sun Jul 5 15:34:30 2020 -0300

    TAP5-2631: fixing broken test
---
 .../groovy/org/apache/tapestry5/integration/app1/MiscTests.groovy     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/MiscTests.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/MiscTests.groovy
index 0cbdea2..77f521c 100644
--- a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/MiscTests.groovy
+++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/MiscTests.groovy
@@ -49,8 +49,8 @@ class MiscTests extends App1TestCase {
     {
         openLinks "Override Label Class Demo"
 
-        assertSourcePresent "<label for=\"firstName\" class=\"control-label\">First Name</label>",
-                            "<label for=\"lastName\" class=\"control-label dummyClassName\">Last Name</label>"
+        assertSourcePresent "<label for=\"firstName\" id=\"firstName-label\" class=\"control-label\">First Name</label>",
+                            "<label for=\"lastName\" id=\"lastName-label\" class=\"control-label dummyClassName\">Last Name</label>"
 
     }