Skip to content

Commit

Permalink
fix lint in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Amxx committed Mar 15, 2021
1 parent ac0199c commit 138c34b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/token/ERC1155/extensions/ERC1155Supply.test.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const { BN, expectRevert } = require('@openzeppelin/test-helpers');
const { BN } = require('@openzeppelin/test-helpers');

const { expect } = require('chai');

const ERC1155SupplyMock = artifacts.require('ERC1155SupplyMock');

contract('ERC1155Supply', function (accounts) {
const [ holder, operator, receiver, other ] = accounts;
const [ holder ] = accounts;

const uri = 'https://token.com';

Expand Down

0 comments on commit 138c34b

Please sign in to comment.