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:39:04 UTC

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

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

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


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

commit 27016a1ea68536db5087b2e05ac96bacd0919ce7
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>"
 
     }