Commit ff316ee1 authored by Barry Warsaw's avatar Barry Warsaw

Port a name error fix from ZODB4.

parent afe3b1bd
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
from ZODB.Transaction import Transaction from ZODB.Transaction import Transaction
from ZODB.tests.IteratorStorage import IteratorDeepCompare from ZODB.tests.IteratorStorage import IteratorDeepCompare
from ZODB.tests.StorageTestBase import MinPO, zodb_unpickle, removefs from ZODB.tests.StorageTestBase import MinPO, zodb_unpickle, removefs
from ZODB.FileStorage import FileStorage
class RecoveryStorage(IteratorDeepCompare): class RecoveryStorage(IteratorDeepCompare):
...@@ -122,6 +123,6 @@ class RecoveryStorage(IteratorDeepCompare): ...@@ -122,6 +123,6 @@ class RecoveryStorage(IteratorDeepCompare):
# This time we will be able to confirm via compare(). # This time we will be able to confirm via compare().
self._dst.close() self._dst.close()
removefs("Dest.fs") removefs("Dest.fs")
self._dst = ZODB.FileStorage.FileStorage('Dest.fs') self._dst = FileStorage('Dest.fs')
self._dst.copyTransactionsFrom(self._storage) self._dst.copyTransactionsFrom(self._storage)
self.compare(self._storage, self._dst) self.compare(self._storage, self._dst)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment