test_user_groups: Fix comment in test_user_group_create.

This commit is contained in:
Sahil Batra 2021-08-14 17:42:15 +05:30 committed by Tim Abbott
parent 068dd6bdae
commit 8b2213a43e

View File

@ -127,7 +127,7 @@ class UserGroupAPITestCase(UserGroupTestCase):
self.assert_json_error(result, "Invalid user ID: 1111")
self.assert_length(UserGroup.objects.all(), 2)
# Test we cannot add hamlet again
# Test we cannot create group with same name again
params = {
"name": "support",
"members": orjson.dumps([hamlet.id]).decode(),