From 76fe1548aee183dfcc395364f0745fe153a56141 Mon Sep 17 00:00:00 2001 From: Vittorio Minacori Date: Tue, 24 Apr 2018 01:36:47 +0200 Subject: [PATCH] Fix ERC721 test is not checking name and symbol properly #910 (#911) --- test/token/ERC721/ERC721Token.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/token/ERC721/ERC721Token.test.js b/test/token/ERC721/ERC721Token.test.js index a1aabc241..46e0cfc68 100644 --- a/test/token/ERC721/ERC721Token.test.js +++ b/test/token/ERC721/ERC721Token.test.js @@ -80,13 +80,13 @@ contract('ERC721Token', function (accounts) { const sampleUri = 'mock://mytoken'; it('has a name', async function () { - const name = await this.token.name(); - name.should.be.equal(name); + const tokenName = await this.token.name(); + tokenName.should.be.equal(name); }); it('has a symbol', async function () { - const symbol = await this.token.symbol(); - symbol.should.be.equal(symbol); + const tokenSymbol = await this.token.symbol(); + tokenSymbol.should.be.equal(symbol); }); it('sets and returns metadata for a token id', async function () {