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 @@ -224,7 +224,7 @@ suite('Kernel Environment Variables Service', () => {
224224 when ( customVariablesService . getCustomEnvironmentVariables ( anything ( ) , anything ( ) , anything ( ) ) ) . thenResolve ( {
225225 PATH : 'foobaz'
226226 } ) ;
227- when ( sqlIntegrationEnvVars . getEnvironmentVariables ( anything ( ) , anything ( ) ) ) . thenResolve ( undefined as any ) ;
227+ when ( sqlIntegrationEnvVars . getEnvironmentVariables ( anything ( ) , anything ( ) ) ) . thenResolve ( { } ) ;
228228 kernelSpec . env = {
229229 ONE : '1' ,
230230 TWO : '2'
@@ -245,7 +245,7 @@ suite('Kernel Environment Variables Service', () => {
245245 when ( customVariablesService . getCustomEnvironmentVariables ( anything ( ) , anything ( ) , anything ( ) ) ) . thenResolve ( {
246246 PATH : 'foobaz'
247247 } ) ;
248- when ( sqlIntegrationEnvVars . getEnvironmentVariables ( anything ( ) , anything ( ) ) ) . thenResolve ( undefined as any ) ;
248+ when ( sqlIntegrationEnvVars . getEnvironmentVariables ( anything ( ) , anything ( ) ) ) . thenResolve ( { } ) ;
249249 kernelSpec . env = {
250250 ONE : '1' ,
251251 TWO : '2' ,
You can’t perform that action at this time.
0 commit comments