File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/test/common/terminals Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,7 @@ suite('Terminal Service', () => {
125125 // Setup IApplicationShell mock with onDidWriteTerminalData
126126 applicationShell = TypeMoq . Mock . ofType < IApplicationShell > ( ) ;
127127 onDidWriteTerminalDataEmitter = new EventEmitter < TerminalDataWriteEvent > ( ) ;
128- applicationShell
129- . setup ( ( a ) => a . onDidWriteTerminalData )
130- . returns ( ( ) => onDidWriteTerminalDataEmitter . event ) ;
128+ applicationShell . setup ( ( a ) => a . onDidWriteTerminalData ) . returns ( ( ) => onDidWriteTerminalDataEmitter . event ) ;
131129 mockServiceContainer . setup ( ( c ) => c . get ( IApplicationShell ) ) . returns ( ( ) => applicationShell . object ) ;
132130
133131 getConfigurationStub = sinon . stub ( workspaceApis , 'getConfiguration' ) ;
You can’t perform that action at this time.
0 commit comments