Skip to content

Commit efb15b4

Browse files
authored
Fix ext-theme tests (#11872)
Matches readthedocs/ext-theme#549 This also needs readthedocs/ext-theme#552
1 parent 67b01e2 commit efb15b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readthedocs/organizations/templates/organizations/organization_choose.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h2>{% trans "Choose an organization" %}</h2>
4242
</div>
4343
<!-- END organization list -->
4444
{% else %}
45-
<p>{% trans "You aren't currently a member of any organizations." %}</p>
45+
<p>{% trans "Your user is not a member of an organization yet." %}</p>
4646
{% endif %}
4747
</div>
4848
</div>

readthedocs/organizations/tests/test_views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,4 +462,4 @@ def test_choose_organization_edit(self):
462462
resp = self.client.get(
463463
reverse("organization_choose", kwargs={"next_name": "organization_edit"})
464464
)
465-
self.assertContains(resp, "You aren't currently a member of any organizations")
465+
self.assertContains(resp, "Your user is not a member of an organization yet")

0 commit comments

Comments
 (0)