Skip to content

Commit

Permalink
test: fixing test files that were pointing to the previous destinatio…
Browse files Browse the repository at this point in the history
…n of the typechain's types
  • Loading branch information
Janther committed Nov 16, 2021
1 parent 1ef3302 commit 7933c0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/greeter/Greeter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { artifacts, ethers, waffle } from "hardhat";
import type { Artifact } from "hardhat/types";
import type { SignerWithAddress } from "@nomiclabs/hardhat-ethers/dist/src/signer-with-address";

import type { Greeter } from "../../types/Greeter";
import type { Greeter } from "../../src/types/Greeter";
import { Signers } from "../types";
import { shouldBehaveLikeGreeter } from "./Greeter.behavior";

Expand Down
2 changes: 1 addition & 1 deletion test/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { SignerWithAddress } from "@nomiclabs/hardhat-ethers/dist/src/signer-with-address";
import type { Fixture } from "ethereum-waffle";

import type { Greeter } from "../types/Greeter";
import type { Greeter } from "../src/types/Greeter";

declare module "mocha" {
export interface Context {
Expand Down

0 comments on commit 7933c0e

Please sign in to comment.