Skip to content

Commit

Permalink
Fix tests (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
OBrezhniev authored Feb 8, 2023
1 parent 9c816ce commit a6aa464
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/offchain/credentialAtomicQueryMTPOffChain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("Test credentialAtomicQueryMTPOffChain.circom", function () {

before(async () => {
circuit = await wasmTester(
path.join(__dirname, "../../circuits", "credentialAtomicQueryMTPOffChain.circom"),
path.join(__dirname, "../../circuits", "credentialAtomicQueryMTPV2.circom"),
{
output: path.join(__dirname, "circuits", "build"),
recompile: true,
Expand Down
2 changes: 1 addition & 1 deletion test/offchain/credentialAtomicQuerySigOffChain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("Test credentialAtomicQuerySigOffChain.circom", function () {

before(async () => {
circuit = await wasmTester(
path.join(__dirname, "../../circuits", "credentialAtomicQuerySigOffChain.circom"),
path.join(__dirname, "../../circuits", "credentialAtomicQuerySigV2.circom"),
{
output: path.join(__dirname, "circuits", "build"),
recompile: true,
Expand Down
2 changes: 1 addition & 1 deletion test/onchain/credentialAtomicQueryMTPOnChain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("Test On Chain credentialAtomicQueryMTPOnChain.circom", function () {
before(async () => {

circuit = await wasm(
path.join(__dirname, "../../circuits/", "credentialAtomicQueryMTPOnChain.circom"),
path.join(__dirname, "../../circuits/", "credentialAtomicQueryMTPV2OnChain.circom"),
{
output: path.join(__dirname, "circuits", "build"),
recompile: true,
Expand Down
2 changes: 1 addition & 1 deletion test/onchain/credentialAtomicQuerySigOnChain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe("On Chain: Test credentialAtomicQuerySigOnChain.circom", function () {

before(async () => {
circuit = await wasm(
path.join(__dirname, "../../circuits", "credentialAtomicQuerySigOnChain.circom"),
path.join(__dirname, "../../circuits", "credentialAtomicQuerySigV2OnChain.circom"),
{
output: path.join(__dirname, "circuits", "build"),
recompile: true,
Expand Down

0 comments on commit a6aa464

Please sign in to comment.