Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Amxx committed Feb 5, 2021
1 parent 53da911 commit 0383c05
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/GSN/ERC721GSNRecipientMock.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@ const ERC721GSNRecipientMock = artifacts.require('ERC721GSNRecipientMock');
contract('ERC721GSNRecipient (integration)', function (accounts) {
const [ signer, sender ] = accounts;

const name = 'Non Fungible Token';
const symbol = 'NFT';
const tokenId = '42';

before(function () {
setGSNProvider(ERC721GSNRecipientMock, accounts);
});

beforeEach(async function () {
this.token = await ERC721GSNRecipientMock.new(name, symbol, signer);
this.token = await ERC721GSNRecipientMock.new(signer);
});

async function testMintToken (token, from, tokenId, options = {}) {
Expand Down

0 comments on commit 0383c05

Please sign in to comment.