Skip to content

Commit

Permalink
yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
0xturboblitz committed Aug 30, 2024
1 parent 9854a4f commit 0629a33
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion circuits/tests/disclose/disclose.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('Disclose', function () {
const majority = '18';
const user_identifier = crypto.randomUUID();
const bitmap = Array(90).fill('1');
const scope = "@coboyApp";
const scope = '@coboyApp';

// compute the commitment and insert it in the tree
const pubkey_leaf = getLeaf({
Expand Down
2 changes: 1 addition & 1 deletion circuits/tests/ofac/ofac.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function getPassportInputs(passportData: PassportData) {
const majority = '18';
const user_identifier = crypto.randomUUID();
const bitmap = Array(90).fill('1');
const scope = "@coboyApp";
const scope = '@coboyApp';

const pubkey_leaf = getLeaf({
signatureAlgorithm: passportData.signatureAlgorithm,
Expand Down
2 changes: 1 addition & 1 deletion circuits/tests/prove/prove_rsa_65537_sha1.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('PROVE - RSA SHA1', function () {
const k_dsc = 32;
const majority = '18';
const user_identifier = crypto.randomUUID();
const scope = "@coboyApp";
const scope = '@coboyApp';
const bitmap = Array(90).fill('1');

const inputs = generateCircuitInputsProve(
Expand Down
2 changes: 1 addition & 1 deletion circuits/tests/prove/prove_rsa_65537_sha256.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('PROVE - RSA SHA256', function () {
const k_dsc = 32;
const majority = '18';
const user_identifier = crypto.randomUUID();
const scope = "@coboyApp";
const scope = '@coboyApp';
const bitmap = Array(90).fill('1');

const inputs = generateCircuitInputsProve(
Expand Down
2 changes: 1 addition & 1 deletion circuits/tests/prove/prove_rsapss_65537_sha256.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('PROVE - RSAPSS SHA256', function () {
const k_dsc = 32;
const majority = '18';
const user_identifier = crypto.randomUUID();
const scope = "@coboyApp";
const scope = '@coboyApp';
const bitmap = Array(90).fill('1');

const inputs = generateCircuitInputsProve(
Expand Down

0 comments on commit 0629a33

Please sign in to comment.