Skip to content

Commit

Permalink
fix: path import
Browse files Browse the repository at this point in the history
  • Loading branch information
elonmallin committed Dec 11, 2023
1 parent 15eef67 commit 0d8e465
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/suite/codelens.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as assert from "assert";
// as well as import your extension to test it
import * as vscode from "vscode";
// import * as myExtension from '../../extension';
import path = require("path");
import * as path from "path";
import { PhpCodeLensProvider } from "../../CodeLens/PhpCodeLensProvider";
import { PhpunitXmlCodeLensProvider } from "../../CodeLens/PhpunitXmlCodeLensProvider";
import { PhpunitArgBuilder } from "../../PhpunitCommand/PhpunitArgBuilder";
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as assert from "assert";
// as well as import your extension to test it
import * as vscode from "vscode";
// import * as myExtension from '../../extension';
import path = require("path");
import * as path from "path";
import { before, beforeEach } from "mocha";
import * as fs from "fs";
import { IMyExtensionApi } from "../../MyExtensionApi";
Expand Down

0 comments on commit 0d8e465

Please sign in to comment.