Skip to content

Commit

Permalink
Have BaseTest inherit from object so that super() invocations work on…
Browse files Browse the repository at this point in the history
… python2.
  • Loading branch information
Fiveside committed Mar 5, 2014
1 parent cdabbd5 commit f260d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_predicate_sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from . import sqlalchemy as models


class BaseTest:
class BaseTest(object):

@pytest.fixture(autouse=True, scope='function')
def database(self, request):
Expand Down

0 comments on commit f260d20

Please sign in to comment.