You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2009/12/10 08:18:08 UTC

svn commit: r889120 - /camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerSuspendTest.java

Author: davsclaus
Date: Thu Dec 10 07:18:08 2009
New Revision: 889120

URL: http://svn.apache.org/viewvc?rev=889120&view=rev
Log:
Fixed unit test

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

Modified: camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerSuspendTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerSuspendTest.java?rev=889120&r1=889119&r2=889120&view=diff
==============================================================================
--- camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerSuspendTest.java (original)
+++ camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerSuspendTest.java Thu Dec 10 07:18:08 2009
@@ -34,7 +34,7 @@
         deleteDirectory("target/suspended");
 
         MockEndpoint mock = getMockEndpoint("mock:result");
-        mock.expectedBodiesReceived("Bye World");
+        mock.expectedMessageCount(1);
 
         template.sendBodyAndHeader("file://target/suspended", "Bye World", Exchange.FILE_NAME, "bye.txt");
         template.sendBodyAndHeader("file://target/suspended", "Hello World", Exchange.FILE_NAME, "hello.txt");