From a66417e9d098b03b5dfaf04ab23fa8d185dd38e2 Mon Sep 17 00:00:00 2001 From: Ross Lawley Date: Thu, 9 Jun 2011 11:31:47 +0100 Subject: [PATCH] pep8 update --- tests/fields.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fields.py b/tests/fields.py index 4d51ed51..1b199982 100644 --- a/tests/fields.py +++ b/tests/fields.py @@ -358,7 +358,7 @@ class FieldTest(unittest.TestCase): self.assertEquals(BlogPost.objects.filter(info__100__test__exact='test').count(), 0) BlogPost.drop_collection() - def test_list_field_Strict(self): + def test_list_field_strict(self): """Ensure that list field handles validation if provided a strict field type.""" class Simple(Document): @@ -465,7 +465,7 @@ class FieldTest(unittest.TestCase): self.assertEquals(BlogPost.objects.filter(info__made_up__test__exact='test').count(), 0) BlogPost.drop_collection() - def test_dictfield_Strict(self): + def test_dictfield_strict(self): """Ensure that dict field handles validation if provided a strict field type.""" class Simple(Document):