diff --git a/plugins/course-apps/teams/utils.test.js b/plugins/course-apps/teams/utils.test.js index 3d36f0946..3b7324cc9 100644 --- a/plugins/course-apps/teams/utils.test.js +++ b/plugins/course-apps/teams/utils.test.js @@ -28,7 +28,7 @@ describe('teams utils', () => { test('returns false if the group is invalid', () => { getConfig.mockReturnValue({ ENABLE_OPEN_MANAGED_TEAM_TYPE: true }); - expect(isGroupTypeEnabled('')).toBe(false); + expect(isGroupTypeEnabled('FOO')).toBe(false); }); test('returns false if the group is null', () => {