mirror of https://github.com/django/django.git
[py3] Fixed backends tests.
This commit is contained in:
parent
c03cf0b096
commit
f34de7dd6e
|
@ -47,6 +47,8 @@ class BaseDatabaseWrapper(object):
|
||||||
def __ne__(self, other):
|
def __ne__(self, other):
|
||||||
return not self == other
|
return not self == other
|
||||||
|
|
||||||
|
__hash__ = object.__hash__
|
||||||
|
|
||||||
def _commit(self):
|
def _commit(self):
|
||||||
if self.connection is not None:
|
if self.connection is not None:
|
||||||
return self.connection.commit()
|
return self.connection.commit()
|
||||||
|
|
Loading…
Reference in New Issue