summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-12 12:52:08 +0100
committerMatthew Lemon <y@yulqen.org>2024-10-14 14:35:17 +0100
commit9fb01e31a3db1f3680e706f1214025664efd0aea (patch)
tree385a338d9c1696bcb6fe4055b94a7491b638e072
parent5a0e7e87814c395328d335f20a43600ae133dc96 (diff)
Now passes form test
-rw-r--r--engagements/tests/test_forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/engagements/tests/test_forms.py b/engagements/tests/test_forms.py
index 851f986..deb0a29 100644
--- a/engagements/tests/test_forms.py
+++ b/engagements/tests/test_forms.py
@@ -56,8 +56,8 @@ def test_form_labels():
def test_form_help_texts():
form = EngagementCreateForm()
- assert form.fields["proposed_start_date"].help_text == "<small><em>YYYY-MM-DD</em></small>"
- assert form.fields["proposed_end_date"].help_text == "<small><em>YYYY-MM-DD</em></small>"
+ assert form.fields["proposed_start_date"].help_text == "YYYY-MM-DD"
+ assert form.fields["proposed_end_date"].help_text == "YYYY-MM-DD"
def test_form_widgets():