Skip to content

Commit

Permalink
test: remove generic use
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Feb 22, 2025
1 parent d5eae30 commit 929b871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conformance/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ switch (plan.name) {
}

async function importPrivateKey(alg: string, jwk: JWK) {
const key = await importJWK<CryptoKey>(jwk, alg)
const key = await importJWK(jwk, alg)
if (!('type' in key)) {
throw new Error()
}
Expand Down

0 comments on commit 929b871

Please sign in to comment.