From c9fd0ba48f44d99ac81ce4af44cf4884a45910dc Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Tue, 19 Sep 2023 09:20:08 -0700 Subject: [PATCH] NFC: Remove unneeded `#cfg(...)` in digest_tests.rs The code is always enabled since "wasm32" was spelled wrongly. Apparently the wasm-bindgen compatibility issue is no longer an issue. --- tests/digest_tests.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/digest_tests.rs b/tests/digest_tests.rs index 85f136a3f7..8cdf890f0c 100644 --- a/tests/digest_tests.rs +++ b/tests/digest_tests.rs @@ -46,8 +46,6 @@ fn digest_misc() { }); } -// wasm_bindgen doesn't build this correctly. -#[cfg(not(target_arch = "wsam32"))] mod digest_shavs { use ring::{digest, test};