@@ -46,7 +46,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
4646 }
4747 } ) ;
4848
49- it ( 'Creates a new CLA Group at child level - Record should Returns 200 Response' , function ( ) {
49+ it ( 'Creates a new CLA Group at child level - Record should return 200 Response' , function ( ) {
5050 cy . request ( {
5151 method : 'POST' ,
5252 url : `${ claEndpoint } /cla-group` ,
@@ -103,7 +103,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
103103 } ) ;
104104 } ) ;
105105
106- it ( 'Get list of cla group associated with project - Record should Returns 200 Response' , function ( ) {
106+ it ( 'Get list of cla group associated with project - Record should return 200 Response' , function ( ) {
107107 cy . request ( {
108108 method : 'GET' ,
109109 url : `${ claEndpoint } /foundation/${ projectSfid } /cla-groups` ,
@@ -142,7 +142,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
142142 } ) ;
143143 } ) ;
144144
145- it ( 'Updates a CLA Group details - Record should Returns 200 Response' , function ( ) {
145+ it ( 'Updates a CLA Group details - Record should return 200 Response' , function ( ) {
146146 cy . request ( {
147147 method : 'PUT' ,
148148 url : `${ claEndpoint } /cla-group/${ claGroupId } ` ,
@@ -168,7 +168,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
168168 } ) ;
169169 } ) ;
170170
171- it ( 'Enroll projects in a CLA Group - Record should Returns 200 Response' , function ( ) {
171+ it ( 'Enroll projects in a CLA Group - Record should return 200 Response' , function ( ) {
172172 cy . request ( {
173173 method : 'PUT' ,
174174 url : `${ claEndpoint } /cla-group/${ claGroupId } /enroll-projects` ,
@@ -206,7 +206,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
206206 } ) ;
207207 } ) ;
208208
209- it ( 'Unenroll projects in a CLA Group - Record should Returns 200 Response' , function ( ) {
209+ it ( 'Unenroll projects in a CLA Group - Record should return 200 Response' , function ( ) {
210210 cy . request ( {
211211 method : 'PUT' ,
212212 url : `${ claEndpoint } /cla-group/${ claGroupId } /unenroll-projects` ,
@@ -222,7 +222,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
222222 } ) ;
223223 } ) ;
224224
225- it ( 'Get list of Github organization associated with project - Record should Returns 200 Response' , function ( ) {
225+ it ( 'Get list of Github organization associated with project - Record should return 200 Response' , function ( ) {
226226 cy . request ( {
227227 method : 'GET' ,
228228 url : `${ claEndpoint } /project/${ projectSfidOrg } /github/organizations` ,
@@ -245,7 +245,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
245245 } ) ;
246246 } ) ;
247247
248- it ( 'Update GitHub Organization Configuration - Record should Returns 200 Response' , function ( ) {
248+ it ( 'Update GitHub Organization Configuration - Record should return 200 Response' , function ( ) {
249249 cy . request ( {
250250 method : 'PUT' ,
251251 url : `${ claEndpoint } /project/${ projectSfidOrg } /github/organizations/${ gitHubOrgName } /config` ,
@@ -264,7 +264,7 @@ describe("To Validate 'GET, CREATE, UPDATE and DELETE' CLA groups API call on ch
264264 } ) ;
265265 } ) ;
266266
267- it ( 'Deletes the CLA Group - Record should Returns 204 Response' , function ( ) {
267+ it ( 'Deletes the CLA Group - Record should return 204 Response' , function ( ) {
268268 if ( claGroupId != null ) {
269269 cy . request ( {
270270 method : 'DELETE' ,
0 commit comments