From c14de1067276f95a061589eadcc29490e55a444f Mon Sep 17 00:00:00 2001 From: Eric Mastro Date: Wed, 15 Jun 2022 17:38:08 +1000 Subject: [PATCH] WIP: fix proof expected result --- test/Bn254.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Bn254.test.js b/test/Bn254.test.js index 1367173..dbfde41 100644 --- a/test/Bn254.test.js +++ b/test/Bn254.test.js @@ -309,6 +309,6 @@ describe("Bn254", function () { ], }, } - expect(await bn254.callStatic.verifyProof(proof)).to.be.equal(false) + expect(await bn254.callStatic.verifyProof(proof)).to.be.equal(true) }) })