Skip to content

Commit 287a2d1

Browse files
committed
Update paths to data files to fix tests
1 parent 80ac593 commit 287a2d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/ql-vscode/test/vscode-tests/cli-integration/packaging/packaging.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ describe("Packaging commands", () => {
8282
});
8383

8484
it("should install valid workspace pack", async () => {
85-
const rootDir = join(__dirname, "./data");
85+
const rootDir = join(__dirname, "../data");
8686
quickPickSpy.mockResolvedValue(
8787
mockedQuickPickItem([
8888
{
@@ -99,7 +99,7 @@ describe("Packaging commands", () => {
9999
});
100100

101101
it("should throw an error when installing invalid workspace pack", async () => {
102-
const rootDir = join(__dirname, "../data-invalid-pack");
102+
const rootDir = join(__dirname, "../../data-invalid-pack");
103103
quickPickSpy.mockResolvedValue(
104104
mockedQuickPickItem([
105105
{

0 commit comments

Comments
 (0)