remove redundant whitespace

This commit is contained in:
Stefan Wojcik 2016-12-22 13:13:19 -05:00
parent b8454c7f5b
commit 96d20756ca

View File

@ -1057,7 +1057,6 @@ class FieldTest(unittest.TestCase):
BlogPost.drop_collection()
def test_list_field_manipulative_operators(self):
"""Ensure that ListField works with standard list operators that manipulate the list.
"""
@ -1346,7 +1345,6 @@ class FieldTest(unittest.TestCase):
post.reload()
self.assertEqual(post.info, [1, 2, 3, 4, 'n5'])
def test_list_field_passed_in_value(self):
class Foo(Document):
bars = ListField(ReferenceField("Bar"))