Skip to content

Commit d4821fd

Browse files
committed
fix tests
1 parent aeabe20 commit d4821fd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/design/plone/contenttypes/tests/test_ct_event.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def test_event_required_fields(self):
117117
"tassonomia_argomenti",
118118
"tipologia_evento",
119119
"start",
120+
"prezzo",
120121
"end",
121122
"descrizione_estesa",
122123
"descrizione_destinatari",
@@ -150,7 +151,7 @@ def test_event_fields_default_fieldset(self):
150151
"recurrence",
151152
"sottotitolo",
152153
"tipologia_evento",
153-
]
154+
],
154155
# should be like this with SchemaTweaks
155156
# [
156157
# "title",
@@ -281,7 +282,7 @@ def test_event_fields_categorization_fieldset(self):
281282
resp = self.api_session.get("@types/Event").json()
282283
self.assertEqual(
283284
resp["fieldsets"][7]["fields"],
284-
["subjects", "language", "relatedItems"]
285+
["subjects", "language", "relatedItems"],
285286
# should be like this with SchemaTweaks
286287
# ["subjects", "language"],
287288
)

0 commit comments

Comments
 (0)