Migrate to Hardhat (#2397)
This commit is contained in:
committed by
GitHub
parent
0c27ecc536
commit
f06738828b
@ -1,10 +1,8 @@
|
||||
const { accounts, contract } = require('@openzeppelin/test-environment');
|
||||
|
||||
const shouldBehaveLikeUpgradeableProxy = require('./UpgradeableProxy.behaviour');
|
||||
|
||||
const UpgradeableProxy = contract.fromArtifact('UpgradeableProxy');
|
||||
const UpgradeableProxy = artifacts.require('UpgradeableProxy');
|
||||
|
||||
describe('UpgradeableProxy', function () {
|
||||
contract('UpgradeableProxy', function (accounts) {
|
||||
const [proxyAdminOwner] = accounts;
|
||||
|
||||
const createProxy = async function (implementation, _admin, initData, opts) {
|
||||
|
||||
Reference in New Issue
Block a user