@@ -33,7 +33,7 @@ suite('PytestInstallationHelper', () => {
3333
3434 test ( 'promptToInstallPytest should return false if user selects ignore' , async ( ) => {
3535 appShell
36- . setup ( ( a ) => a . showInformationMessage ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
36+ . setup ( ( a ) => a . showInformationMessage ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
3737 . returns ( ( ) => Promise . resolve ( 'Ignore' ) )
3838 . verifiable ( TypeMoq . Times . once ( ) ) ;
3939
@@ -45,7 +45,7 @@ suite('PytestInstallationHelper', () => {
4545
4646 test ( 'promptToInstallPytest should return false if user cancels' , async ( ) => {
4747 appShell
48- . setup ( ( a ) => a . showInformationMessage ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
48+ . setup ( ( a ) => a . showInformationMessage ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
4949 . returns ( ( ) => Promise . resolve ( undefined ) )
5050 . verifiable ( TypeMoq . Times . once ( ) ) ;
5151
@@ -68,7 +68,7 @@ suite('PytestInstallationHelper', () => {
6868 useEnvExtensionStub . returns ( false ) ;
6969
7070 appShell
71- . setup ( ( a ) => a . showInformationMessage ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
71+ . setup ( ( a ) => a . showInformationMessage ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
7272 . returns ( ( ) => Promise . resolve ( 'Install pytest' ) )
7373 . verifiable ( TypeMoq . Times . once ( ) ) ;
7474
@@ -95,6 +95,7 @@ suite('PytestInstallationHelper', () => {
9595 TypeMoq . It . is ( ( msg : string ) => msg . includes ( 'pytest selected but not installed' ) ) ,
9696 TypeMoq . It . isAny ( ) ,
9797 TypeMoq . It . isAny ( ) ,
98+ TypeMoq . It . isAny ( ) ,
9899 ) ,
99100 )
100101 . returns ( ( ) => Promise . resolve ( 'Install pytest' ) )
0 commit comments