@@ -11,7 +11,7 @@ import { Commands } from '../../../client/common/constants';
1111import { createDeferred , Deferred } from '../../../client/common/utils/async' ;
1212import { Interpreters } from '../../../client/common/utils/localize' ;
1313import { IComponentAdapter } from '../../../client/interpreter/contracts' ;
14- import { InterpreterLocatorProgressStatubarHandler } from '../../../client/interpreter/display/progressDisplay' ;
14+ import { InterpreterLocatorProgressStatusBarHandler } from '../../../client/interpreter/display/progressDisplay' ;
1515import { ProgressNotificationEvent , ProgressReportStage } from '../../../client/pythonEnvironments/base/locator' ;
1616import { noop } from '../../core' ;
1717
@@ -41,7 +41,7 @@ suite('Interpreters - Display Progress', () => {
4141 } ) ;
4242 test ( 'Display discovering message when refreshing interpreters for the first time' , async ( ) => {
4343 const shell = mock ( ApplicationShell ) ;
44- const statusBar = new InterpreterLocatorProgressStatubarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
44+ const statusBar = new InterpreterLocatorProgressStatusBarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
4545 when ( shell . withProgress ( anything ( ) , anything ( ) ) ) . thenResolve ( ) ;
4646
4747 await statusBar . activate ( ) ;
@@ -53,7 +53,7 @@ suite('Interpreters - Display Progress', () => {
5353
5454 test ( 'Display refreshing message when refreshing interpreters for the second time' , async ( ) => {
5555 const shell = mock ( ApplicationShell ) ;
56- const statusBar = new InterpreterLocatorProgressStatubarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
56+ const statusBar = new InterpreterLocatorProgressStatusBarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
5757 when ( shell . withProgress ( anything ( ) , anything ( ) ) ) . thenResolve ( ) ;
5858
5959 await statusBar . activate ( ) ;
@@ -70,7 +70,7 @@ suite('Interpreters - Display Progress', () => {
7070
7171 test ( 'Progress message is hidden when loading has completed' , async ( ) => {
7272 const shell = mock ( ApplicationShell ) ;
73- const statusBar = new InterpreterLocatorProgressStatubarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
73+ const statusBar = new InterpreterLocatorProgressStatusBarHandler ( instance ( shell ) , [ ] , componentAdapter ) ;
7474 when ( shell . withProgress ( anything ( ) , anything ( ) ) ) . thenResolve ( ) ;
7575
7676 await statusBar . activate ( ) ;
0 commit comments