Skip to content

Commit

Permalink
fix: remove t.Parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel committed Sep 7, 2023
1 parent 230f56d commit 443dd31
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/assert_checkcircuit.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ func (assert *Assert) CheckCircuit(circuit frontend.Circuit, opts ...TestingOpti
w := w
assert.Run(func(assert *Assert) {
checkSolidity := opt.checkSolidity && curve == ecc.BN254
if !checkSolidity {
// TODO @gbotrel FIXME running with t.Parallel() makes the test fail
// when calling solidityVerification
assert.t.Parallel()
}
// if !checkSolidity {
// // TODO @gbotrel FIXME running with t.Parallel() makes the test fail
// // when calling solidityVerification
// assert.t.Parallel()
// }
proof, err := concreteBackend.prove(ccs, pk, w.full, opt.proverOpts...)
assert.noError(err, &w)

Expand Down

0 comments on commit 443dd31

Please sign in to comment.