From c108327c280ccf0ce9ebf9e5d5976c4f76c323bd Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Mon, 13 Sep 2021 10:09:34 +0430 Subject: [PATCH] 0.3.0.dev2 --- tests/test_forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_forms.py b/tests/test_forms.py index b00ce7c..33fa264 100644 --- a/tests/test_forms.py +++ b/tests/test_forms.py @@ -12,6 +12,7 @@ "d": typesystem.Choice( choices=[("abc", "Abc"), ("def", "Def"), ("ghi", "Ghi")] ), + "extra": typesystem.Boolean(default=True, read_only=True), "password": typesystem.Password(), } )