tests: dummydbm.error should be KeyError.

This commit is contained in:
Rolando Espinoza La fuente 2013-02-01 12:52:59 -04:00
parent 6ed44a3a67
commit d00e6cf1d7
1 changed files with 1 additions and 2 deletions

View File

@ -8,8 +8,7 @@ class DummyDB(dict):
pass
class error(Exception):
pass
error = KeyError
_DATABASES = collections.defaultdict(DummyDB)