You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ri...@apache.org on 2007/02/12 09:11:06 UTC

svn commit: r506364 - /incubator/qpid/branches/perftesting/qpid/java/client/src/test/java/org/apache/qpid/test/unit/transacted/CommitRollbackTest.java

Author: ritchiem
Date: Mon Feb 12 00:11:06 2007
New Revision: 506364

URL: http://svn.apache.org/viewvc?view=rev&rev=506364
Log:
QPID-346 Message loss after rollback

Fixed an error in one the putAndRollBack test.

Modified:
    incubator/qpid/branches/perftesting/qpid/java/client/src/test/java/org/apache/qpid/test/unit/transacted/CommitRollbackTest.java

Modified: incubator/qpid/branches/perftesting/qpid/java/client/src/test/java/org/apache/qpid/test/unit/transacted/CommitRollbackTest.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/perftesting/qpid/java/client/src/test/java/org/apache/qpid/test/unit/transacted/CommitRollbackTest.java?view=diff&rev=506364&r1=506363&r2=506364
==============================================================================
--- incubator/qpid/branches/perftesting/qpid/java/client/src/test/java/org/apache/qpid/test/unit/transacted/CommitRollbackTest.java (original)
+++ incubator/qpid/branches/perftesting/qpid/java/client/src/test/java/org/apache/qpid/test/unit/transacted/CommitRollbackTest.java Mon Feb 12 00:11:06 2007
@@ -135,7 +135,7 @@
         _logger.info("receiving result");
         Message result = _consumer.receive(1000);
 
-        assertTrue("Redelivered not true", result.getJMSRedelivered());
+        
         assertNull("test message was put and rolled back, but is still present", result);
     }