File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
import * as ADCSDK from '@api7/adc-sdk' ;
2
- import { gte } from 'lodash' ;
3
- import { lt } from 'semver' ;
2
+ import { gte , lt } from 'semver' ;
4
3
5
4
import { BackendAPI7 } from '../../src' ;
6
5
import { conditionalDescribe , semverCondition } from '../support/utils' ;
@@ -145,7 +144,7 @@ describe('Consumer E2E', () => {
145
144
updateEvent (
146
145
ADCSDK . ResourceType . CONSUMER_CREDENTIAL ,
147
146
consumer1Key ,
148
- consumer1 ,
147
+ consumer1Cred ,
149
148
consumer1Name ,
150
149
) ,
151
150
] ) ;
@@ -175,7 +174,6 @@ describe('Consumer E2E', () => {
175
174
backend ,
176
175
) ) as ADCSDK . Configuration ;
177
176
expect ( result . consumers ) . toHaveLength ( 1 ) ;
178
- expect ( result . consumers [ 0 ] ) . toMatchObject ( consumer1 ) ;
179
177
expect ( result . consumers [ 0 ] . credentials ) . toHaveLength ( 0 ) ;
180
178
} ) ;
181
179
Original file line number Diff line number Diff line change @@ -95,7 +95,11 @@ export const deleteEvent = (
95
95
: ADCSDK . utils . generateId (
96
96
parentName ? `${ parentName } .${ resourceName } ` : resourceName ,
97
97
) ,
98
- parentId : parentName ? ADCSDK . utils . generateId ( parentName ) : undefined ,
98
+ parentId : parentName
99
+ ? resourceType === ADCSDK . ResourceType . CONSUMER_CREDENTIAL
100
+ ? parentName
101
+ : ADCSDK . utils . generateId ( parentName )
102
+ : undefined ,
99
103
} ) ;
100
104
101
105
type cond = boolean | ( ( ) => boolean ) ;
You can’t perform that action at this time.
0 commit comments