Migrate to Hardhat (#2397)
This commit is contained in:
@ -1,11 +1,10 @@
|
||||
const { contract } = require('@openzeppelin/test-environment');
|
||||
require('@openzeppelin/test-helpers');
|
||||
|
||||
const { expect } = require('chai');
|
||||
|
||||
const ArraysImpl = contract.fromArtifact('ArraysImpl');
|
||||
const ArraysImpl = artifacts.require('ArraysImpl');
|
||||
|
||||
describe('Arrays', function () {
|
||||
contract('Arrays', function (accounts) {
|
||||
describe('findUpperBound', function () {
|
||||
context('Even number of elements', function () {
|
||||
const EVEN_ELEMENTS_ARRAY = [11, 12, 13, 14, 15, 16, 17, 18, 19, 20];
|
||||
|
||||
Reference in New Issue
Block a user