Simplify ESLint config (#3903)
This commit is contained in:
@ -3,7 +3,7 @@ const { expect } = require('chai');
|
||||
|
||||
const BitMap = artifacts.require('BitMapMock');
|
||||
|
||||
contract('BitMap', function (accounts) {
|
||||
contract('BitMap', function () {
|
||||
const keyA = new BN('7891');
|
||||
const keyB = new BN('451');
|
||||
const keyC = new BN('9592328');
|
||||
|
||||
@ -10,7 +10,7 @@ async function getContent (deque) {
|
||||
return values;
|
||||
}
|
||||
|
||||
contract('DoubleEndedQueue', function (accounts) {
|
||||
contract('DoubleEndedQueue', function () {
|
||||
const bytesA = '0xdeadbeef'.padEnd(66, '0');
|
||||
const bytesB = '0x0123456789'.padEnd(66, '0');
|
||||
const bytesC = '0x42424242'.padEnd(66, '0');
|
||||
|
||||
Reference in New Issue
Block a user