aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-06-16 13:43:15 -0400
committerRob Austein <sra@hactrn.net>2016-06-16 13:43:15 -0400
commitca7a8cf05893ee127cbcaa9e9e85d0d13bc1b7ee (patch)
treea2fda28a0f8a9643045f484be24afdf5c442b870
parent5445287e3c34576c82c7f5c4e825fb4881a17e06 (diff)
Completely farbled most of the super() incantations, sigh.
-rw-r--r--unit_tests.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/unit_tests.py b/unit_tests.py
index 6634b7b..4b02a35 100644
--- a/unit_tests.py
+++ b/unit_tests.py
@@ -121,12 +121,13 @@ class TimedTestCase(unittest.TestCase):
"""
def setUp(self):
+ super(TimedTestCase, self).setUp()
self.startTime = datetime.datetime.now()
def tearDown(self):
self.endTime = datetime.datetime.now()
log("runtime {} seconds ... ".format(self.endTime - self.startTime))
-
+ super(TimedTestCase, self).tearDown()
class TestInit(TimedTestCase):
"""
@@ -152,7 +153,7 @@ class TestInit(TimedTestCase):
p11.C_Initialize(CKF_OS_LOCKING_OK, mdb.create, mdb.destroy, mdb.lock, mdb.unlock)
def tearDown(self):
- super(TestKeys, self).setUp()
+ super(TestInit, self).tearDown()
p11.C_Finalize()
@@ -170,7 +171,7 @@ class TestDevice(TimedTestCase):
p11.C_Finalize()
def tearDown(self):
- super(TestKeys, self).setUp()
+ super(TestDevice, self).tearDown()
p11.C_CloseAllSessions(args.slot)
def test_getSlots(self):
@@ -260,7 +261,7 @@ class TestKeys(TimedTestCase):
super(TestKeys, self).setUp()
def tearDown(self):
- super(TestKeys, self).setUp()
+ super(TestKeys, self).tearDown()
for handle in p11.FindObjects(self.session):
p11.C_DestroyObject(self.session, handle)
p11.C_CloseAllSessions(args.slot)