File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ suite('RHDA module', () => {
4242 sandbox . restore ( ) ;
4343 } ) ;
4444
45- test ( 'should ignore unsoported file' , async ( ) => {
45+ test ( 'should ignore unsupported file' , async ( ) => {
4646 const unsupportedFilePath = mockInvalidPath ;
4747 const authorizeRHDAStub = sandbox . stub ( globalConfig , 'authorizeRHDA' ) . resolves ( ) ;
4848 const stackAnalysisServiceStub = sandbox . stub ( stackAnalysis , 'executeStackAnalysis' ) . resolves ( mockReponse )
@@ -54,7 +54,7 @@ suite('RHDA module', () => {
5454 expect ( authorizeRHDAStub . calledOnce ) . to . be . false ;
5555 expect ( stackAnalysisServiceStub . calledOnce ) . to . be . false ;
5656 expect ( imageAnalysisServiceStub . calledOnce ) . to . be . false ;
57- expect ( showInformationMessageSpy . calledOnceWith ( `File ${ unsupportedFilePath } is not supported!! ` ) ) . to . be . true ;
57+ expect ( showInformationMessageSpy . calledOnceWith ( `File ${ unsupportedFilePath } is not supported. ` ) ) . to . be . true ;
5858 } ) ;
5959
6060 test ( 'should receive RHDA report for supported dependency file and successfully save HTML data locally' , async ( ) => {
You can’t perform that action at this time.
0 commit comments