Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kbecker42 committed Oct 2, 2024
1 parent c41f3cf commit f3b7895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_view/test_project_contact.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def test_project_contact_no_auth(self):
@with_request_context
@patch('pybossa.cache.users.public_get_user_summary')
def test_project_sanitize_project_no_owner_not_project_owner(self, public_get_user_summary):
"""Test Project sanitize_project_owner when no onwer returned and current user not owner."""
"""Test Project sanitize_project_owner when no owner returned and current user not owner."""
admin, owner, user = UserFactory.create_batch(3)
project = ProjectFactory.create(owner=owner, short_name='test-app', name='My New Project')

Expand All @@ -197,7 +197,7 @@ def test_project_sanitize_project_no_owner_not_project_owner(self, public_get_us
@with_request_context
@patch('pybossa.cache.users.get_user_summary')
def test_project_sanitize_project_no_owner_is_project_owner(self, get_user_summary):
"""Test Project sanitize_project_owner when no onwer returned and current user is owner."""
"""Test Project sanitize_project_owner when no owner returned and current user is owner."""
admin, owner, user = UserFactory.create_batch(3)
project = ProjectFactory.create(owner=owner, short_name='test-app', name='My New Project')

Expand Down

0 comments on commit f3b7895

Please sign in to comment.