Manual code format

This commit is contained in:
tudorvaran 2020-02-12 16:55:39 +02:00
parent 598b8ca65e
commit a9a5add303

View File

@ -203,8 +203,8 @@ class LocalizedIntegerFieldTestCase(TestCase):
def func():
return output
Model = get_fake_model(dict(test=LocalizedIntegerValue(default=func)))
obj = Model()
model = get_fake_model({"test": LocalizedIntegerValue(default=func)})
obj = model()
assert obj.test['en'] == output['en']