From b46408ccd20c356518455f2cb90c56ed4874a4c4 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Mon, 4 Oct 2021 14:04:40 -0700 Subject: [PATCH] WIP on JSON tests --- tests/test_json_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_json_model.py b/tests/test_json_model.py index 4d79565..847239c 100644 --- a/tests/test_json_model.py +++ b/tests/test_json_model.py @@ -48,7 +48,7 @@ class Member(BaseJsonModel): last_name: str email: str = Field(index=True) join_date: datetime.date - age: int + age: int = Field(index=True) # Creates an embedded model. address: Address