File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export class CxWrapper {
115115 commands . push ( "-" + key . toString ( ) . replace ( / _ / g, "-" ) . toLowerCase ( ) ) ;
116116 commands . push ( value ) ;
117117 } else if ( key === CxParamType . ADDITIONAL_PARAMETERS ) {
118- this . prepareAdditionalParams ( this . config . additionalParameters ) . forEach ( ( element ) => {
118+ this . prepareAdditionalParams ( value ) . forEach ( ( element ) => {
119119 logger . info ( "Additional parameter: " + element )
120120 commands . push ( element ) ;
121121 } ) ;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ describe("ScanCreate cases", () => {
7171 const scanObject = cxCommandOutput . payload . pop ( ) ;
7272 const scanShowObject = await auth . scanShow ( scanObject . id ) ;
7373 console . log ( " Json object from successful no wait mode case: " + JSON . stringify ( scanShowObject ) ) ;
74- expect ( scanShowObject . payload . pop ( ) . status ) . toEqual ( "Partial " ) ;
74+ expect ( scanShowObject . payload . pop ( ) . status ) . toEqual ( "Running " ) ;
7575 } )
7676
7777 it ( 'ScanCancel Successful case' , async ( ) => {
You can’t perform that action at this time.
0 commit comments