Simplify ESLint config (#3903)
This commit is contained in:
@ -6,7 +6,7 @@ const shouldBehaveLikeClone = require('./Clones.behaviour');
|
||||
|
||||
const ClonesMock = artifacts.require('ClonesMock');
|
||||
|
||||
contract('Clones', function (accounts) {
|
||||
contract('Clones', function () {
|
||||
describe('clone', function () {
|
||||
shouldBehaveLikeClone(async (implementation, initData, opts = {}) => {
|
||||
const factory = await ClonesMock.new();
|
||||
|
||||
@ -10,7 +10,7 @@ const DisableBad1 = artifacts.require('DisableBad1');
|
||||
const DisableBad2 = artifacts.require('DisableBad2');
|
||||
const DisableOk = artifacts.require('DisableOk');
|
||||
|
||||
contract('Initializable', function (accounts) {
|
||||
contract('Initializable', function () {
|
||||
describe('basic testing without inheritance', function () {
|
||||
beforeEach('deploying', async function () {
|
||||
this.contract = await InitializableMock.new();
|
||||
|
||||
@ -8,7 +8,7 @@ const UUPSUpgradeableUnsafeMock = artifacts.require('UUPSUpgradeableUnsafeMock')
|
||||
const UUPSUpgradeableLegacyMock = artifacts.require('UUPSUpgradeableLegacyMock');
|
||||
const CountersImpl = artifacts.require('CountersImpl');
|
||||
|
||||
contract('UUPSUpgradeable', function (accounts) {
|
||||
contract('UUPSUpgradeable', function () {
|
||||
before(async function () {
|
||||
this.implInitial = await UUPSUpgradeableMock.new();
|
||||
this.implUpgradeOk = await UUPSUpgradeableMock.new();
|
||||
|
||||
Reference in New Issue
Block a user