From 0e4d421ed55d33b472c06bb427b311321e27dbe8 Mon Sep 17 00:00:00 2001 From: kurticognjen Date: Fri, 30 Jun 2023 15:14:52 +0200 Subject: [PATCH] Remove obsolete todo comments from SigUpGatekepper.test.ts --- contracts/ts/__tests__/SignUpGatekeeper.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/contracts/ts/__tests__/SignUpGatekeeper.test.ts b/contracts/ts/__tests__/SignUpGatekeeper.test.ts index c57639bb64..06d5c1c985 100644 --- a/contracts/ts/__tests__/SignUpGatekeeper.test.ts +++ b/contracts/ts/__tests__/SignUpGatekeeper.test.ts @@ -61,8 +61,6 @@ describe('SignUpGatekeeper', () => { maciContract = r.maciContract; }); - // TODO: TypeError: Cannot read properties of undefined (reading 'address') - // await signUpTokenGatekeeperContract.setMaciInstance(maciContract.address); it('sets MACI instance correctly', async () => { await signUpTokenGatekeeperContract.setMaciInstance(maciContract.address); @@ -71,7 +69,6 @@ describe('SignUpGatekeeper', () => { ); }); - // TODO: invalid address or ENS name (argument="name", value=undefined, code=INVALID_ARGUMENT, version=contracts/5.5.0) it('Reverts if address provided is not a MACI instance', async () => { const user = new Keypair(); const signer = await getDefaultSigner();