Tests: Persistence test mixin fix

* The _get_connection method of PersistenceTestMixin
  should take `self` as the first argument.

Change-Id: Ibaaa0d54b408d5e37c6349c63becef919d02fac8
This commit is contained in:
skudriashev
2014-01-26 14:38:49 +02:00
parent 2422828a9a
commit 553f84dfe4

View File

@@ -25,7 +25,7 @@ from taskflow.utils import misc
class PersistenceTestMixin(object):
def _get_connection():
def _get_connection(self):
raise NotImplementedError()
def test_logbook_save_retrieve(self):