Skip to content

Commit

Permalink
fix(tests): bad abi imports
Browse files Browse the repository at this point in the history
  • Loading branch information
loicttn committed Sep 28, 2023
1 parent bb2f76d commit 7c1709e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/src/batchWithdrawEL.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ledgerService } from "@ledgerhq/hw-app-eth";
const contractAddr = "0xe8ff2a04837aac535199eecb5ece52b2735b3543";

const pluginName = "Kiln";
const abi_path = `../${pluginName}/abis/` + contractAddr + ".json";
const abi_path = `../cal/abis/${contractAddr}.json`;
const abi = require(abi_path);

nano_models.forEach(function (model) {
Expand Down
2 changes: 1 addition & 1 deletion tests/src/requestExit.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ledgerService } from "@ledgerhq/hw-app-eth";
const contractAddr = "0xe8ff2a04837aac535199eecb5ece52b2735b3543";

const pluginName = "Kiln";
const abi_path = `../${pluginName}/abis/` + contractAddr + ".json";
const abi_path = `../cal/abis/${contractAddr}.json`;
const abi = require(abi_path);

nano_models.forEach(function (model) {
Expand Down

0 comments on commit 7c1709e

Please sign in to comment.