diff --git a/home/templates/home/snippet/funding_short_description.html b/home/templates/home/snippet/funding_short_description.html index 5d7f2b4a3..f434e4499 100644 --- a/home/templates/home/snippet/funding_short_description.html +++ b/home/templates/home/snippet/funding_short_description.html @@ -1,7 +1,7 @@ {% load humanize %} {% comment %}Point coordinators to resources for finding and pitching to sponsors, once the community guide exists.{% endcomment %} -
All communities must find finding for at least one intern (${{ current_round.sponsorship_per_intern|intcomma }} USD):
+All communities must find funding for at least one intern (${{ current_round.sponsorship_per_intern|intcomma }} USD):
All communities must find finding for at least one intern ($10,000 USD):
', html=True) + self.assertContains(response, 'All communities must find funding for at least one intern ($10,000 USD):
', html=True) self.assertContains(response, '', html=True) response = self.coordinator_signs_up_community_to_participate( diff --git a/home/test_docs_community.py b/home/test_docs_community.py index e7472577a..a8bad6a54 100644 --- a/home/test_docs_community.py +++ b/home/test_docs_community.py @@ -21,7 +21,7 @@ def test_sponsorship_increase_visible(self): response = self.client.get(reverse('docs-community')) self.assertEqual(response.status_code, 200) - self.assertContains(response, 'All communities must find finding for at least one intern ($5,000 USD):
', html=True) + self.assertContains(response, 'All communities must find funding for at least one intern ($5,000 USD):
', html=True) self.assertContains(response, 'Other communities must secure their own funding for at least one intern ($5,000 USD). After that external funding is secured, they can apply for additional interns to be funded by the Outreachy general fund.
', html=True) self.assertContains(response, 'The sponsorship for each Outreachy intern is $5,000 USD.
', html=True) @@ -30,7 +30,7 @@ def test_sponsorship_increase_visible(self): response = self.client.get(reverse('docs-community')) self.assertEqual(response.status_code, 200) - self.assertContains(response, 'All communities must find finding for at least one intern ($10,000 USD):
', html=True) + self.assertContains(response, 'All communities must find funding for at least one intern ($10,000 USD):
', html=True) self.assertContains(response, 'Other communities must secure their own funding for at least one intern ($10,000 USD). After that external funding is secured, they can apply for additional interns to be funded by the Outreachy general fund.
', html=True) self.assertContains(response, 'The sponsorship for each Outreachy intern is $10,000 USD.
', html=True)