Shorten names for everything

This commit is contained in:
Swen Kooij
2017-05-25 19:06:44 +03:00
parent bb84d7577c
commit a1a02552b7
18 changed files with 36 additions and 23 deletions

View File

@@ -16,7 +16,7 @@ def define_fake_model(name='TestModel', fields=None):
if fields:
attributes.update(fields)
model = type(name, (AtomicSlugRetryMixin,LocalizedModel,), attributes)
model = type(name, (LocalizedModel,), attributes)
return model