Skip to content

Commit

Permalink
Remove additional ()s from data model tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 committed Oct 30, 2024
1 parent 41ad5d9 commit b2af0e7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions tests/80-algorithms-jcs.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const {match} = endpoints.filterByTag({
});
const should = chai.should();

describe('Algorithms - Transformation (eddsa-jcs-2022)', function() {
describe('eddsa-jcs-2022 - Algorithms - Transformation', function() {
setupMatrix.call(this, match);
let validVc;
before(async function() {
Expand Down Expand Up @@ -102,7 +102,7 @@ describe('Algorithms - Transformation (eddsa-jcs-2022)', function() {
}
});

describe('Algorithms - Proof Configuration (eddsa-jcs-2022)', function() {
describe('eddsa-jcs-2022 - Algorithms - Proof Configuration', function() {
setupMatrix.call(this, match);
let validVc;
before(async function() {
Expand Down Expand Up @@ -176,7 +176,7 @@ describe('Algorithms - Proof Configuration (eddsa-jcs-2022)', function() {
}
});

describe('Algorithms - Proof Serialization (eddsa-jcs-2022)', function() {
describe('eddsa-jcs-2022 - Algorithms - Proof Serialization', function() {
setupMatrix.call(this, match);
let validVc;
before(async function() {
Expand Down
6 changes: 3 additions & 3 deletions tests/80-algorithms-rdfc.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const {match} = endpoints.filterByTag({
});
const should = chai.should();

describe('Algorithms - Transformation (eddsa-rdfc-2022)', function() {
describe('eddsa-rdfc-2022 - Algorithms - Transformation', function() {
setupMatrix.call(this, match);
let validVc;
before(async function() {
Expand Down Expand Up @@ -104,7 +104,7 @@ describe('Algorithms - Transformation (eddsa-rdfc-2022)', function() {
}
});

describe('Algorithms - Proof Configuration (eddsa-rdfc-2022)', function() {
describe('eddsa-rdfc-2022 - Algorithms - Proof Configuration', function() {
setupMatrix.call(this, match);
let validVc;
before(async function() {
Expand Down Expand Up @@ -182,7 +182,7 @@ describe('Algorithms - Proof Configuration (eddsa-rdfc-2022)', function() {
}
});

describe('Algorithms - Proof Serialization (eddsa-rdfc-2022)', function() {
describe('eddsa-rdfc-2022 - Algorithms - Proof Serialization', function() {
setupMatrix.call(this, match);
let validVc;
before(async function() {
Expand Down
4 changes: 2 additions & 2 deletions tests/suites/data-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const should = chai.should();

export function verificationMethods({suiteName, match}) {
return describe(
`${suiteName} - Data Model - Verification Methods (Multikey)`, function() {
`${suiteName} - Data Model - Verification Methods`, function() {
setupMatrix.call(this, match);
let validVc;
before(async function() {
Expand Down Expand Up @@ -111,7 +111,7 @@ export function verificationMethods({suiteName, match}) {

export function diProofs({suiteName, match, cryptosuites}) {
return describe(
`${suiteName} - Data Model - Proof Representations (DataIntegrityProof)`,
`${suiteName} - Data Model - Proof Representations`,
function() {
setupMatrix.call(this, match);
let validVc;
Expand Down

0 comments on commit b2af0e7

Please sign in to comment.