minor additions

This commit is contained in:
Bastien Gérard 2018-10-16 22:35:58 +02:00
parent 4939a7dd7c
commit a1a93a4bdd
2 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,6 @@ Changes in 0.15.4
=================
- Added `DateField` #513
Changes in 0.15.3
=================
- Subfield resolve error in generic_emdedded_document query #1651 #1652

View File

@ -2328,7 +2328,7 @@ class QuerySetTest(unittest.TestCase):
class User(Document):
username = StringField()
bar = GenericEmbeddedDocumentField(choices=[Bar, ])
bar = GenericEmbeddedDocumentField(choices=[Bar])
User.drop_collection()