@@ -11,7 +11,7 @@ import { Commands } from '../../../client/common/constants';
11
11
import { createDeferred , Deferred } from '../../../client/common/utils/async' ;
12
12
import { Interpreters } from '../../../client/common/utils/localize' ;
13
13
import { IComponentAdapter } from '../../../client/interpreter/contracts' ;
14
- import { InterpreterLocatorProgressStatubarHandler } from '../../../client/interpreter/display/progressDisplay' ;
14
+ import { InterpreterLocatorProgressStatusBarHandler } from '../../../client/interpreter/display/progressDisplay' ;
15
15
import { ProgressNotificationEvent , ProgressReportStage } from '../../../client/pythonEnvironments/base/locator' ;
16
16
import { noop } from '../../core' ;
17
17
@@ -41,7 +41,7 @@ suite('Interpreters - Display Progress', () => {
41
41
} ) ;
42
42
test ( 'Display discovering message when refreshing interpreters for the first time' , async ( ) => {
43
43
const shell = mock ( ApplicationShell ) ;
44
- const statusBar = new InterpreterLocatorProgressStatubarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
44
+ const statusBar = new InterpreterLocatorProgressStatusBarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
45
45
when ( shell . withProgress ( anything ( ) , anything ( ) ) ) . thenResolve ( ) ;
46
46
47
47
await statusBar . activate ( ) ;
@@ -53,7 +53,7 @@ suite('Interpreters - Display Progress', () => {
53
53
54
54
test ( 'Display refreshing message when refreshing interpreters for the second time' , async ( ) => {
55
55
const shell = mock ( ApplicationShell ) ;
56
- const statusBar = new InterpreterLocatorProgressStatubarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
56
+ const statusBar = new InterpreterLocatorProgressStatusBarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
57
57
when ( shell . withProgress ( anything ( ) , anything ( ) ) ) . thenResolve ( ) ;
58
58
59
59
await statusBar . activate ( ) ;
@@ -70,7 +70,7 @@ suite('Interpreters - Display Progress', () => {
70
70
71
71
test ( 'Progress message is hidden when loading has completed' , async ( ) => {
72
72
const shell = mock ( ApplicationShell ) ;
73
- const statusBar = new InterpreterLocatorProgressStatubarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
73
+ const statusBar = new InterpreterLocatorProgressStatusBarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
74
74
when ( shell . withProgress ( anything ( ) , anything ( ) ) ) . thenResolve ( ) ;
75
75
76
76
await statusBar . activate ( ) ;
0 commit comments