Skip to content

Commit

Permalink
Fix ext-theme tests (#11872)
Browse files Browse the repository at this point in the history
  • Loading branch information
stsewd authored Dec 24, 2024
1 parent 67b01e2 commit efb15b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h2>{% trans "Choose an organization" %}</h2>
</div>
<!-- END organization list -->
{% else %}
<p>{% trans "You aren't currently a member of any organizations." %}</p>
<p>{% trans "Your user is not a member of an organization yet." %}</p>
{% endif %}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion readthedocs/organizations/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,4 +462,4 @@ def test_choose_organization_edit(self):
resp = self.client.get(
reverse("organization_choose", kwargs={"next_name": "organization_edit"})
)
self.assertContains(resp, "You aren't currently a member of any organizations")
self.assertContains(resp, "Your user is not a member of an organization yet")

0 comments on commit efb15b4

Please sign in to comment.