autoformat with updated black
This commit is contained in:
@@ -290,8 +290,7 @@ class TestGeoField(MongoDBTestCase):
|
||||
Location(loc=[[[[1, 2], [3, 4], [5, 6], [1, 2]]]]).validate()
|
||||
|
||||
def test_indexes_geopoint(self):
|
||||
"""Ensure that indexes are created automatically for GeoPointFields.
|
||||
"""
|
||||
"""Ensure that indexes are created automatically for GeoPointFields."""
|
||||
|
||||
class Event(Document):
|
||||
title = StringField()
|
||||
@@ -317,8 +316,7 @@ class TestGeoField(MongoDBTestCase):
|
||||
assert geo_indicies == [{"fields": [("venue.location", "2d")]}]
|
||||
|
||||
def test_indexes_2dsphere(self):
|
||||
"""Ensure that indexes are created automatically for GeoPointFields.
|
||||
"""
|
||||
"""Ensure that indexes are created automatically for GeoPointFields."""
|
||||
|
||||
class Event(Document):
|
||||
title = StringField()
|
||||
@@ -332,8 +330,7 @@ class TestGeoField(MongoDBTestCase):
|
||||
assert {"fields": [("point", "2dsphere")]} in geo_indicies
|
||||
|
||||
def test_indexes_2dsphere_embedded(self):
|
||||
"""Ensure that indexes are created automatically for GeoPointFields.
|
||||
"""
|
||||
"""Ensure that indexes are created automatically for GeoPointFields."""
|
||||
|
||||
class Venue(EmbeddedDocument):
|
||||
name = StringField()
|
||||
|
||||
Reference in New Issue
Block a user