You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2008/04/01 11:20:54 UTC

svn commit: r643333 - /cocoon/whiteboard/corona/trunk/corona-servlet/src/test/java/org/apache/cocoon/corona/sitemap/SitemapBuilderTest.java

Author: reinhard
Date: Tue Apr  1 02:20:48 2008
New Revision: 643333

URL: http://svn.apache.org/viewvc?rev=643333&view=rev
Log:
. add constructor methods to InvocationImpl

Modified:
    cocoon/whiteboard/corona/trunk/corona-servlet/src/test/java/org/apache/cocoon/corona/sitemap/SitemapBuilderTest.java

Modified: cocoon/whiteboard/corona/trunk/corona-servlet/src/test/java/org/apache/cocoon/corona/sitemap/SitemapBuilderTest.java
URL: http://svn.apache.org/viewvc/cocoon/whiteboard/corona/trunk/corona-servlet/src/test/java/org/apache/cocoon/corona/sitemap/SitemapBuilderTest.java?rev=643333&r1=643332&r2=643333&view=diff
==============================================================================
--- cocoon/whiteboard/corona/trunk/corona-servlet/src/test/java/org/apache/cocoon/corona/sitemap/SitemapBuilderTest.java (original)
+++ cocoon/whiteboard/corona/trunk/corona-servlet/src/test/java/org/apache/cocoon/corona/sitemap/SitemapBuilderTest.java Tue Apr  1 02:20:48 2008
@@ -185,9 +185,8 @@
     }
 
     private Invocation buildInvocation(String request) {
-        InvocationImpl invocation = new InvocationImpl();
+        InvocationImpl invocation = new InvocationImpl(System.out);
 
-        invocation.setOutputStream(System.out);
         invocation.setRequestURI(request);
         invocation.setComponentProvider(this.componentProvider);