Kaynağa Gözat

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

Klaus Hott 3 yıl önce
ebeveyn
işleme
7933c0e88e
2 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  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 {