Commit 455c21c7 authored by Brian Lloyd's avatar Brian Lloyd

merge test fix

parent 2f8efb21
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Test Bindings """Test Bindings
$Id: testBindings.py,v 1.3 2004/01/21 19:05:33 Brian Exp $ $Id: testBindings.py,v 1.4 2004/01/27 18:37:24 Brian Exp $
""" """
import unittest import unittest
...@@ -81,7 +81,8 @@ class TestBindings(unittest.TestCase): ...@@ -81,7 +81,8 @@ class TestBindings(unittest.TestCase):
def setUp(self): def setUp(self):
from Testing.ZODButil import makeDB from Testing.ZODButil import makeDB
get_transaction().begin() get_transaction().begin()
self.connection = makeDB().open() self.db = makeDB()
self.connection = self.db.open()
def tearDown(self): def tearDown(self):
from Testing.ZODButil import cleanDB from Testing.ZODButil import cleanDB
...@@ -89,6 +90,7 @@ class TestBindings(unittest.TestCase): ...@@ -89,6 +90,7 @@ class TestBindings(unittest.TestCase):
noSecurityManager() noSecurityManager()
get_transaction().abort() get_transaction().abort()
self.connection.close() self.connection.close()
self.db.close()
cleanDB() cleanDB()
def _getRoot(self): def _getRoot(self):
......
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