diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-30 17:12:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 17:12:13 -0400 |
commit | 4a5642779e133425f4e6c75865de28952c761a8d (patch) | |
tree | 9035f4c4f1fbe8b287184edf16b2ebd0c53a4ff4 /tests/unit_node/crypto/crypto_key_test.ts | |
parent | b1c6142f741a507ba6594ab174065e00213100b9 (diff) |
fix: upgrade deno_ast 0.42 (#25313)
Diffstat (limited to 'tests/unit_node/crypto/crypto_key_test.ts')
-rw-r--r-- | tests/unit_node/crypto/crypto_key_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit_node/crypto/crypto_key_test.ts b/tests/unit_node/crypto/crypto_key_test.ts index 1f900e84c..f12aaa87d 100644 --- a/tests/unit_node/crypto/crypto_key_test.ts +++ b/tests/unit_node/crypto/crypto_key_test.ts @@ -532,7 +532,7 @@ MC4CAQAwBQYDK2VwBCIEIJ1hsZ3v/VpguoRK9JLsLMREScVpezJpGXA7rAMcrn9g assertEquals(pkcs8Actual, pkcs8Expected); }); -Deno.test("RSA export public JWK", async function () { +Deno.test("RSA export public JWK", function () { const importKey = "-----BEGIN PUBLIC KEY-----\n" + "MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqF66soiDvuqUB7ufWtuV\n" + "5a1nZIw90m9qHEl2MeNt66HeEjG2GeHDfF5a4uplutnAh3dwpFweHqGIyB16POTI\n" + @@ -557,7 +557,7 @@ Deno.test("RSA export public JWK", async function () { }); }); -Deno.test("EC export public jwk", async function () { +Deno.test("EC export public jwk", function () { const key = "-----BEGIN PUBLIC KEY-----\n" + "MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEVEEIrFEZ+40Pk90LtKBQ3r7FGAPl\n" + "v4bvX9grC8bNiNiVAcyEKs+QZKQj/0/CUPJV10AmavrUoPk/7Wy0sejopQ==\n" + @@ -573,7 +573,7 @@ Deno.test("EC export public jwk", async function () { }); }); -Deno.test("Ed25519 export public jwk", async function () { +Deno.test("Ed25519 export public jwk", function () { const key = "-----BEGIN PUBLIC KEY-----\n" + "MCowBQYDK2VwAyEAKCVFOD6Le61XM7HbN/MB/N06mX5bti2p50qjLvT1mzE=\n" + "-----END PUBLIC KEY-----\n"; |