You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2007/05/01 19:03:00 UTC

svn commit: r534158 - /activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileRouteTest.java

Author: jstrachan
Date: Tue May  1 10:02:58 2007
New Revision: 534158

URL: http://svn.apache.org/viewvc?view=rev&rev=534158
Log:
avoid the generated file being in the root directory; use the target dir instead

Modified:
    activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileRouteTest.java

Modified: activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileRouteTest.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileRouteTest.java?view=diff&rev=534158&r1=534157&r2=534158
==============================================================================
--- activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileRouteTest.java (original)
+++ activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileRouteTest.java Tue May  1 10:02:58 2007
@@ -39,7 +39,7 @@
     protected CamelContext container = new DefaultCamelContext();
     protected CountDownLatch latch = new CountDownLatch(1);
     protected Exchange receivedExchange;
-    protected String uri = "file://foo.txt";
+    protected String uri = "file://target/foo.txt";
     protected Producer<FileExchange> producer;