@@ -38,6 +38,12 @@ export function commonAlgorithms({
38
38
mandatoryPointers
39
39
} ) ;
40
40
} ) ;
41
+ beforeEach ( function ( ) {
42
+ this . currentTest . cell = {
43
+ rowId : this . currentTest . title ,
44
+ columnId : this . currentTest . parent . title
45
+ } ;
46
+ } ) ;
41
47
it ( 'When generating ECDSA signatures, the signature value MUST be ' +
42
48
'expressed according to section 7 of [RFC4754] (sometimes referred ' +
43
49
'to as the IEEE P1363 format) and encoded according to the specific ' +
@@ -254,7 +260,7 @@ function unsafeProxy(suite) {
254
260
get ( target , prop ) {
255
261
if ( prop === 'canonize' ) {
256
262
return function ( doc , options ) {
257
- return suite . _cryptosuite . canonize ( doc , { ...options , safe : false } ) ;
263
+ return target . canonize ( doc , { ...options , safe : false } ) ;
258
264
} ;
259
265
}
260
266
return Reflect . get ( ...arguments ) ;
@@ -265,7 +271,7 @@ function unsafeProxy(suite) {
265
271
get ( target , prop ) {
266
272
if ( prop === 'canonize' ) {
267
273
return function ( doc , options ) {
268
- return suite . canonize ( doc , { ...options , safe : false } ) ;
274
+ return target . canonize ( doc , { ...options , safe : false } ) ;
269
275
} ;
270
276
}
271
277
return Reflect . get ( ...arguments ) ;
0 commit comments