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 2022/06/15 00:05:21 UTC

[tapestry-5] branch master updated: Adding sleep to AppFolderTests.asset_access to make it pass

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 55553dd77 Adding sleep to AppFolderTests.asset_access to make it pass
55553dd77 is described below

commit 55553dd773f0b8d7f2f0dfafbf72bbebd0206bef
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Tue Jun 14 21:05:10 2022 -0300

    Adding sleep to AppFolderTests.asset_access to make it pass
---
 .../org/apache/tapestry5/integration/appfolder/AppFolderTests.groovy    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/appfolder/AppFolderTests.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/appfolder/AppFolderTests.groovy
index 501473021..9a1563f64 100644
--- a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/appfolder/AppFolderTests.groovy
+++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/appfolder/AppFolderTests.groovy
@@ -52,6 +52,8 @@ class AppFolderTests extends GroovyTapestryCoreTestCase
     void asset_access()
     {
         openLinks "t5app/"
+        
+        Thread.sleep(3000);
 
         // there's only one image on page
         String assetURL = getAttribute("//img/@src")