[Checkins] SVN: ZODB/trunk/src/ZODB/tests/testConnection.py Wrapped some long lines.

Jim Fulton jim at zope.com
Tue Jun 9 18:56:13 EDT 2009


Log message for revision 100774:
  Wrapped some long lines.
  

Changed:
  U   ZODB/trunk/src/ZODB/tests/testConnection.py

-=-
Modified: ZODB/trunk/src/ZODB/tests/testConnection.py
===================================================================
--- ZODB/trunk/src/ZODB/tests/testConnection.py	2009-06-09 22:55:51 UTC (rev 100773)
+++ ZODB/trunk/src/ZODB/tests/testConnection.py	2009-06-09 22:56:13 UTC (rev 100774)
@@ -594,7 +594,8 @@
         transaction.savepoint()
         new_size = obj._p_estimated_size
         self.assert_(new_size > size)
-        self.assertEqual(cache.total_estimated_size, cache_size + new_size - size)
+        self.assertEqual(cache.total_estimated_size,
+                         cache_size + new_size - size)
 
     def test_size_set_on_load(self):
         c = self.db.open() # new connection
@@ -607,11 +608,11 @@
         size = obj._p_estimated_size
         self.assert_(size > 0)
         self.assertEqual(cache.total_estimated_size, cache_size + size)
-        # we test here as well that the deactivation works reduced the cache size
+        # we test here as well that the deactivation works reduced the cache
+        # size
         obj._p_deactivate()
         self.assertEqual(cache.total_estimated_size, cache_size)
 
-
     def test_configuration(self):
         # verify defaults ....
         expected = 0



More information about the Checkins mailing list