Skip to content

Commit

Permalink
fix(tests): fixed some imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Mar 29, 2023
1 parent 7e0d9e2 commit cbd9e67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -2,7 +2,7 @@ import { expect } from 'chai';
import type { Signer } from 'ethers';
import { ethers } from 'hardhat';

import { givethDonationRelayer } from '../../../../src/modules/giveth/commands/donate';
import { givethDonationRelayer } from '../../../../src/modules/giveth/addresses';

import { createInterpreter } from '../../../test-helpers/cas11';

Expand Down
Expand Up @@ -3,10 +3,10 @@ import type { Signer } from 'ethers';
import { ethers } from 'hardhat';

import { createInterpreter } from '../../../test-helpers/cas11';
import { defaultRelayerAddr } from '../../../../src/modules/giveth/addresses';

describe('Giveth > commands > finalize-givbacks <ipfsHash> [--relayer <relayer>]', () => {
let signer: Signer;
const defaultRelayerAddr = '0xd0e81E3EE863318D0121501ff48C6C3e3Fd6cbc7';

before(async () => {
[signer] = await ethers.getSigners();
Expand Down
Expand Up @@ -3,10 +3,10 @@ import type { Signer } from 'ethers';
import { ethers } from 'hardhat';

import { createInterpreter } from '../../../test-helpers/cas11';
import { defaultRelayerAddr } from '../../../../src/modules/giveth/addresses';

describe('Giveth > commands > initiate-givbacks <ipfsHash> [--relayer <relayer>]', () => {
let signer: Signer;
const defaultRelayerAddr = '0xd0e81E3EE863318D0121501ff48C6C3e3Fd6cbc7';

before(async () => {
[signer] = await ethers.getSigners();
Expand Down

1 comment on commit cbd9e67

@vercel
Copy link

@vercel vercel bot commented on cbd9e67 Mar 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

evmcrispr-evmcrispr-terminal – ./

evmcrispr-evmcrispr-terminal-git-master-1hive.vercel.app
evmcrispr.vercel.app
evmcrispr-evmcrispr-terminal-1hive.vercel.app

Please sign in to comment.