@@ -285,7 +285,7 @@ import UpgradeModule from "../ignition/modules/UpgradeModule";
285
285
describe (" Demo Proxy" , function () {
286
286
describe (" Proxy interaction" , async function () {
287
287
it (" Should be interactable via proxy" , async function () {
288
- const [owner , otherAccount] = await ethers .getSigners ();
288
+ const [, otherAccount] = await ethers .getSigners ();
289
289
290
290
const { demo } = await ignition .deploy (ProxyModule );
291
291
@@ -295,15 +295,15 @@ describe("Demo Proxy", function () {
295
295
296
296
describe (" Upgrading" , function () {
297
297
it (" Should have upgraded the proxy to DemoV2" , async function () {
298
- const [owner , otherAccount] = await ethers .getSigners ();
298
+ const [, otherAccount] = await ethers .getSigners ();
299
299
300
300
const { demo } = await ignition .deploy (ProxyModule );
301
301
302
302
expect (await demo .connect (otherAccount ).version ()).to .equal (" 2.0.0" );
303
303
});
304
304
305
305
it (" Should have set the name during upgrade" , async function () {
306
- const [owner , otherAccount] = await ethers .getSigners ();
306
+ const [, otherAccount] = await ethers .getSigners ();
307
307
308
308
const { demo } = await ignition .deploy (UpgradeModule );
309
309
0 commit comments