Skip to content

Commit

Permalink
Fix deploy test
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciech-turek committed Aug 9, 2024
1 parent 66a8be1 commit 0a953b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/batch-transfers/test/BatchTransfer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ const runSetup = async () => {

describe('BatchTransfer (/packages/batch-transfer/contracts/BatchTransfer.sol)', async function () {
it('deploys correctly', async function () {
const [deployer] = await ethers.getSigners();
const BatchTransfer = await ethers.getContractFactory('BatchTransfer');
const batchTransfer = await BatchTransfer.deploy(deployer.address);
const batchTransfer = await BatchTransfer.deploy();
expect(await batchTransfer.getAddress()).to.be.properAddress;
});
describe('Token transfers', async function () {
Expand Down

0 comments on commit 0a953b7

Please sign in to comment.