summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-12 12:52:08 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-12 12:52:08 +0100
commit4f3bb2927fb8327f5b73e59acb2a91dfbacb5fb5 (patch)
tree385a338d9c1696bcb6fe4055b94a7491b638e072
parent7fa97be1538e3278fc46d5279907a0e062a80e9a (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():