You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2009/03/12 07:14:30 UTC

svn commit: r752784 - /camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/converter/stream/StreamCacheConverterTest.java

Author: ningjiang
Date: Thu Mar 12 06:14:29 2009
New Revision: 752784

URL: http://svn.apache.org/viewvc?rev=752784&view=rev
Log:
Fixed the build error of StreamCacheConverter

Modified:
    camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/converter/stream/StreamCacheConverterTest.java

Modified: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/converter/stream/StreamCacheConverterTest.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/converter/stream/StreamCacheConverterTest.java?rev=752784&r1=752783&r2=752784&view=diff
==============================================================================
--- camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/converter/stream/StreamCacheConverterTest.java (original)
+++ camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/converter/stream/StreamCacheConverterTest.java Thu Mar 12 06:14:29 2009
@@ -50,7 +50,7 @@
 
     public void testConvertToStreamCacheStreamSource() throws IOException, FileNotFoundException, TransformerException {
         StreamSource source = new StreamSource(getTestFileStream());
-        StreamCache cache = converter.convertToStreamCache(source);
+        StreamCache cache = converter.convertToStreamCache(source, exchange);
         //assert re-readability of the cached StreamSource
         XmlConverter converter = new XmlConverter();
         assertNotNull(converter.toString((Source)cache));