Parcourir la source

test: fixing test files that were pointing to the previous destination of the typechain's types

Klaus Hott il y a 3 ans
Parent
commit
7933c0e88e
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      test/greeter/Greeter.ts
  2. 1 1
      test/types.ts

+ 1 - 1
test/greeter/Greeter.ts

@@ -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";
 

+ 1 - 1
test/types.ts

@@ -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 {