Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
fvictorio committed Apr 25, 2024
1 parent ad15800 commit 373939a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions hardhat-tests/test/helpers/errors.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import { assert, AssertionError } from "chai";

import { HardhatError } from "hardhat/internal/core/errors";
import { ErrorDescriptor } from "hardhat/internal/core/errors-list";
import { AssertionError } from "chai";

export async function expectErrorAsync(
f: () => Promise<any>,
Expand Down
4 changes: 1 addition & 3 deletions hardhat-tests/test/helpers/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ export function useFixtureProject(projectName: string) {
});
}

async function getFixtureProjectPath(
projectName: string
): Promise<string> {
async function getFixtureProjectPath(projectName: string): Promise<string> {
const normalizedProjectName = projectName.replaceAll("/", path.sep);

const projectPath = path.join(
Expand Down

0 comments on commit 373939a

Please sign in to comment.