Skip to content

Commit e860492

Browse files
committed
docs: update test to match monorepo
I removed the unneeded variables in the monorepo, so I am updating the usage here as well.
1 parent 3bd80a0 commit e860492

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/content/ignition/docs/guides/upgradeable-proxies.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ import UpgradeModule from "../ignition/modules/UpgradeModule";
285285
describe("Demo Proxy", function () {
286286
describe("Proxy interaction", async function () {
287287
it("Should be interactable via proxy", async function () {
288-
const [owner, otherAccount] = await ethers.getSigners();
288+
const [, otherAccount] = await ethers.getSigners();
289289

290290
const { demo } = await ignition.deploy(ProxyModule);
291291

@@ -295,15 +295,15 @@ describe("Demo Proxy", function () {
295295

296296
describe("Upgrading", function () {
297297
it("Should have upgraded the proxy to DemoV2", async function () {
298-
const [owner, otherAccount] = await ethers.getSigners();
298+
const [, otherAccount] = await ethers.getSigners();
299299

300300
const { demo } = await ignition.deploy(ProxyModule);
301301

302302
expect(await demo.connect(otherAccount).version()).to.equal("2.0.0");
303303
});
304304

305305
it("Should have set the name during upgrade", async function () {
306-
const [owner, otherAccount] = await ethers.getSigners();
306+
const [, otherAccount] = await ethers.getSigners();
307307

308308
const { demo } = await ignition.deploy(UpgradeModule);
309309

0 commit comments

Comments
 (0)