Updated Branches: refs/heads/master 6fd011e7d -> 054770724
Pass a null CompressionAnalyzer as it is not used Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/e97c4021 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/e97c4021 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/e97c4021 Branch: refs/heads/master Commit: e97c402168a84fa58fac5105d28038fcd9845957 Parents: 55003bd Author: Howard M. Lewis Ship <[email protected]> Authored: Sun Apr 14 15:34:20 2013 +0100 Committer: Howard M. Lewis Ship <[email protected]> Committed: Mon Apr 15 22:11:18 2013 +0100 ---------------------------------------------------------------------- .../integration/appfolder/AppFolderTests.groovy | 2 +- .../ResponseCompressionAnalyzerTest.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/e97c4021/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/appfolder/AppFolderTests.groovy ---------------------------------------------------------------------- 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 57818a5..d183f03 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 @@ -58,7 +58,7 @@ class AppFolderTests extends GroovyTapestryCoreTestCase // Ony one image on page String assetURL = getAttribute("//img/@src") - assert assetURL.startsWith("/t5app/assets/") + assert assetURL.startsWith("/t5app/asset/") assertDownloadedAsset assetURL, "src/test/appfolder/images/t5-logo.png" } http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/e97c4021/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy ---------------------------------------------------------------------- diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy index f702e2e..bdd56d5 100644 --- a/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy +++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy @@ -17,7 +17,7 @@ class ResponseCompressionAnalyzerTest extends TestBase { replay() - ResponseCompressionAnalyzer rca = new ResponseCompressionAnalyzerImpl(request, true, compressionAnalyzer) + ResponseCompressionAnalyzer rca = new ResponseCompressionAnalyzerImpl(request, true, null) assert rca.isGZipSupported() == false
