소스 검색

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

Klaus Hott 3 년 전
부모
커밋
7933c0e88e
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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 {