@@ -243,7 +243,7 @@ function run_test(algorithmNames) {
|
243 | 243 | allAlgorithmSpecifiersFor(name).forEach(function(algorithm) { |
244 | 244 | getValidKeyData(algorithm).forEach(function(test) { |
245 | 245 | if (test.format === "jwk") { |
246 | | -var data = {crv: test.data.crv, kty: test.data.kty, d: test.data.d, x: test.data.x, d: test.data.d}; |
| 246 | +var data = {crv: test.data.crv, kty: test.data.kty, d: test.data.d, x: test.data.x, y: test.data.y}; |
247 | 247 | data.use = "invalid"; |
248 | 248 | var usages = validUsages(vector, 'jwk', test.data); |
249 | 249 | if (usages.length !== 0) |
|