Skip to content

Commit

Permalink
chore: update test_users.py (#322)
Browse files Browse the repository at this point in the history
successfull -> successful
  • Loading branch information
eltociear authored Nov 5, 2024
1 parent ef29cd0 commit 28eb373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rekono/testing/api/test_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def invite(self, data: Dict[str, str], status_code: int = 201) -> None:
'''
expected = {'email': data['email'], 'role': data['role'], 'is_active': None}
if status_code == 201:
# Invite new user. Expected successfull request
# Invite new user. Expected successful request
self.api_test(self.client.post, f'{self.endpoint}invite/', status_code, data=data, expected=expected)
else:
self.api_test(self.client.post, f'{self.endpoint}invite/', status_code, data=data) # Try to invite user
Expand Down

0 comments on commit 28eb373

Please sign in to comment.