Skip to content

Commit fd2b0cd

Browse files
sudhirvermadgolovin
authored andcommitted
removed unused import
1 parent 3d30565 commit fd2b0cd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/openshift/cluster.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import { OpenShiftObject, Command } from "../odo";
77
import { OpenShiftItem } from './openshiftItem';
88
import * as vscode from 'vscode';
9-
import * as validator from 'validator';
109
import { CliExitData } from "../cli";
1110
import opn = require("opn");
1211

test/openshift/component.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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([]);

0 commit comments

Comments
 (0)