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/10/24 13:45:17 UTC

[tapestry-5] branch java9modules updated: TAP5-2644: debugging test failure in CoreBehaviorsTest

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 cbb053e  TAP5-2644: debugging test failure in CoreBehaviorsTest
cbb053e is described below

commit cbb053ee8834b4755e20b40407fd56019d9cf875
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sat Oct 24 10:44:57 2020 -0300

    TAP5-2644: debugging test failure in CoreBehaviorsTest
---
 .../org/apache/tapestry5/integration/app1/CoreBehaviorsTests.java     | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/CoreBehaviorsTests.java b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/CoreBehaviorsTests.java
index 992bb4e..edab046 100644
--- a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/CoreBehaviorsTests.java
+++ b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/CoreBehaviorsTests.java
@@ -182,6 +182,8 @@ public class CoreBehaviorsTests extends App1TestCase
     {
         openLinks("Inject Demo");
 
+        System.out.println(getHtmlSource());
+        
         // is a test for a named @Inject:
         assertTextPresent("<Proxy for Request(org.apache.tapestry5.services.http.Request)>");
 
@@ -204,6 +206,8 @@ public class CoreBehaviorsTests extends App1TestCase
     public void atinjection() throws Exception
     {
         openLinks("@javax.inject.Inject Demo");
+        
+        System.out.println(getHtmlSource());
 
         // is a test for a named @Inject:
         assertTextPresent("<Proxy for Request(org.apache.tapestry5.services.http.Request)>");