kaori 4 лет назад
Родитель
Сommit
af19a1d4d8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/app/test/integration/service/v5.user-groups.test.ts

+ 1 - 1
packages/app/test/integration/service/v5.user-groups.test.ts

@@ -64,7 +64,7 @@ describe('UserGroupService', () => {
     await expect(crowi.userGroupService.updateGroup(userGroup._id, 'v5_group2')).rejects.toThrow('The group name is already taken');
   });
 
-  test('Parent will be null If parent group is released', async() => {
+  test('Parent should be null when parent group is released', async() => {
     const userGroup = await UserGroup.findOne({ _id: groupId3 });
     const updatedUserGroup = await crowi.userGroupService.updateGroup(userGroup._id, userGroup.name, userGroup.description, null);