File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 66import { OpenShiftObject , Command } from "../odo" ;
77import { OpenShiftItem } from './openshiftItem' ;
88import * as vscode from 'vscode' ;
9- import * as validator from 'validator' ;
109import { CliExitData } from "../cli" ;
1110import opn = require( "opn" ) ;
1211
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ suite('Openshift/Component', () => {
3232 setup ( ( ) => {
3333 sandbox = sinon . createSandbox ( ) ;
3434 termStub = sandbox . stub ( OdoImpl . prototype , 'executeInTerminal' ) ;
35- execStub = sandbox . stub ( OdoImpl . prototype , 'execute' ) . resolves ( { stdout :"" } ) ;
35+ execStub = sandbox . stub ( OdoImpl . prototype , 'execute' ) . resolves ( { stdout : "" } ) ;
3636 sandbox . stub ( OdoImpl . prototype , 'getServices' ) ;
3737 getProjectsStub = sandbox . stub ( OdoImpl . prototype , 'getProjects' ) . resolves ( [ ] ) ;
3838 getApplicationsStub = sandbox . stub ( OdoImpl . prototype , 'getApplications' ) . resolves ( [ ] ) ;
You can’t perform that action at this time.
0 commit comments