Skip to content

Commit 0d38fda

Browse files
committed
[#3081] fix test
1 parent 8c6dfea commit 0d38fda

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/open_inwoner/plans/tests/test_views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def test_plan_create_no_template_contains_expected_contacts(self):
357357
self.user.user_contacts.add(another_contact)
358358
response = self.app.get(self.create_url, user=self.user)
359359

360-
rendered_contacts = response.pyquery("#plan-form .grid .form__grid-box")[
360+
rendered_contacts = response.pyquery("#plan-form .plan__contacts")[
361361
0
362362
].text_content()
363363

src/open_inwoner/templates/pages/plans/create-no-template.html

+2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ <h1 class="utrecht-heading-1">{% trans "Start nieuwe samenwerking" %}</h1>
2121
{% input form.title %}
2222
{% input form.goal %}
2323
{% input form.description %}
24+
<div class="plan__contacts">
2425
{% checkboxes form.plan_contacts %}
26+
</div>
2527
{% date_field form.end_date icon="today" icon_position="after" %}
2628

2729
<div class="">

0 commit comments

Comments
 (0)