Removed code related to Document.__only_fields and Queryset.only_fields which appear to have no effect

This commit is contained in:
Bastien Gérard
2020-11-02 14:52:02 +01:00
parent ee664f0c90
commit d8b8ff6851
4 changed files with 13 additions and 39 deletions

View File

@@ -3411,7 +3411,7 @@ class TestDocumentInstance(MongoDBTestCase):
assert obj3 != dbref2
assert dbref2 != obj3
def test_default_values(self):
def test_default_values_dont_get_override_upon_save_when_only_is_used(self):
class Person(Document):
created_on = DateTimeField(default=lambda: datetime.utcnow())
name = StringField()