Skip to content

Commit eeec5a3

Browse files
committed
Change to implemented array.
1 parent 0a84a19 commit eeec5a3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/suites/algorithms.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export function ecdsaRdfc2019Algorithms({
9595
return describe(`${suiteName} - Algorithms - VC ${vcVersion}`, function() {
9696
this.matrix = true;
9797
this.report = true;
98-
this.implemented = [...verifiers];
98+
this.implemented = [];
9999
this.rowLabel = 'Test Name';
100100
this.columnLabel = 'Implementation';
101101
let credentials = new Map();
@@ -110,6 +110,7 @@ export function ecdsaRdfc2019Algorithms({
110110
});
111111
for(const [name, {endpoints}] of verifiers) {
112112
const [verifier] = endpoints;
113+
this.implemented.push(`${name}: ${keyType}`);
113114
describe(`${name}: ${keyType}`, function() {
114115
beforeEach(function() {
115116
this.currentTest.cell = {

tests/suites/conformance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function conformanceSuite({
4141
for(const [name, {endpoints}] of verifiers) {
4242
const [verifier] = endpoints;
4343
for(const keyType of keyTypes) {
44-
// add implementer name and keyType to test report
44+
// add implementer name and keyType to test report
4545
this.implemented.push(`${name}: ${keyType}`);
4646
describe(`${name}: ${keyType}`, function() {
4747
beforeEach(function() {

0 commit comments

Comments
 (0)