Skip to content

Commit

Permalink
Fix path resolution in resolveTestFilePath function
Browse files Browse the repository at this point in the history
  • Loading branch information
aliariff committed Feb 11, 2024
1 parent 6e861d5 commit 51c474c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ suite("ERB Formatter/Beautify tests", () => {
* @returns The full path of the test file.
*/
function resolveTestFilePath(filename: string): string {
return path.resolve(__dirname, "../../../", "src/test/fixtures/", filename);
return path.resolve(__dirname, "../../", "src/test/fixtures/", filename);
}

/**
Expand Down

0 comments on commit 51c474c

Please sign in to comment.