[Neo-report] r2447 vincent - /trunk/neo/tests/storage/testReplicator.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Nov 9 18:58:13 CET 2010


Author: vincent
Date: Tue Nov  9 18:58:13 2010
New Revision: 2447

Log:
waiting_for_unfinished_tids is not expected to be cleaned on reset.

Modified:
    trunk/neo/tests/storage/testReplicator.py

Modified: trunk/neo/tests/storage/testReplicator.py
==============================================================================
--- trunk/neo/tests/storage/testReplicator.py [iso-8859-1] (original)
+++ trunk/neo/tests/storage/testReplicator.py [iso-8859-1] Tue Nov  9 18:58:13 2010
@@ -59,7 +59,6 @@ class StorageReplicatorTests(NeoUnitTest
         replicator.task_dict = {'foo': 'bar'}
         replicator.current_partition = 'foo'
         replicator.current_connection = 'foo'
-        replicator.waiting_for_unfinished_tids = 'foo'
         replicator.unfinished_tid_list = ['foo']
         replicator.replication_done = 'foo'
         replicator.reset()
@@ -67,7 +66,6 @@ class StorageReplicatorTests(NeoUnitTest
         self.assertEqual(replicator.task_dict, {})
         self.assertEqual(replicator.current_partition, None)
         self.assertEqual(replicator.current_connection, None)
-        self.assertFalse(replicator.waiting_for_unfinished_tids)
         self.assertEqual(replicator.unfinished_tid_list, None)
         self.assertTrue(replicator.replication_done)
 





More information about the Neo-report mailing list