From ace900ade714452feeba7aac88928b909a2af4f9 Mon Sep 17 00:00:00 2001 From: Tushar Pandey Date: Wed, 21 Aug 2024 12:38:47 +0530 Subject: [PATCH] fixed some comments --- test/management/self-service-profiles.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/management/self-service-profiles.test.ts b/test/management/self-service-profiles.test.ts index b2b5ee22e..9b3e4271e 100644 --- a/test/management/self-service-profiles.test.ts +++ b/test/management/self-service-profiles.test.ts @@ -190,7 +190,7 @@ describe('SelfServiceProfilesManager', () => { }); }); - // this unit test is for the getSelfServiceProfileById() method + // this unit test is for the deleteSelfServiceProfiles() method it('should delete one of self-service profile by id', async () => { // eslint-disable-next-line prettier/prettier nockedRequest = nock(API_URL) @@ -233,7 +233,7 @@ describe('SelfServiceProfilesManager', () => { }); }); - // this unit test is for the getSelfServiceProfileById() method + // this unit test is for the patchSelfServiceProfiles() method it('should update one of self-service profile by id', async () => { const nockedResponse: SsProfile = { id: requestParameters.id, @@ -295,8 +295,8 @@ describe('SelfServiceProfilesManager', () => { }); }); - // this unit test is for the getSelfServiceProfileById() method - it('should update one of self-service profile by id', async () => { + // this unit test is for the postSsoTicket() method + it('should set sso ticket for one sso profile', async () => { const nockedResponse: SsoAccessTicketResponse = { ticket: 'https://example.com/ticket', };