aboutsummaryrefslogtreecommitdiff
path: root/tests/test_pandora/test_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pandora/test_models.py')
-rw-r--r--tests/test_pandora/test_models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pandora/test_models.py b/tests/test_pandora/test_models.py
index 8cfbd9d..0d37ca0 100644
--- a/tests/test_pandora/test_models.py
+++ b/tests/test_pandora/test_models.py
@@ -25,7 +25,7 @@ class TestField(TestCase):
25 25
26class TestModelMetaClass(TestCase): 26class TestModelMetaClass(TestCase):
27 27
28 class TestModel(object, metaclass=m.ModelMetaClass): 28 class TestModel(metaclass=m.ModelMetaClass):
29 29
30 foo = "bar" 30 foo = "bar"
31 a_field = m.Field("testing") 31 a_field = m.Field("testing")