Skip to content

Commit d551d5c

Browse files
committed
Fix tests
1 parent aaf7cda commit d551d5c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/token/ERC721/utils/ERC721Utils.test.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const deployReceiver = (revertType, returnValue = RECEIVER_MAGIC_VALUE) =>
1212
ethers.deployContract('$ERC721ReceiverMock', [returnValue, revertType]);
1313

1414
const fixture = async () => {
15-
const [operator, owner] = await ethers.getSigners();
15+
const [eoa, operator, owner] = await ethers.getSigners();
1616
const utils = await ethers.deployContract('$ERC721Utils');
1717

1818
const receivers = {
@@ -23,12 +23,13 @@ const fixture = async () => {
2323
customError: await deployReceiver(RevertType.RevertWithCustomError),
2424
panic: await deployReceiver(RevertType.Panic),
2525
nonReceiver: await ethers.deployContract('CallReceiverMock'),
26+
eoa,
2627
};
2728

2829
return { operator, owner, utils, receivers };
2930
};
3031

31-
describe('ERC721Utils', function () {
32+
describe.only('ERC721Utils', function () {
3233
beforeEach(async function () {
3334
Object.assign(this, await loadFixture(fixture));
3435
});

0 commit comments

Comments
 (0)