test: Tests in aes.rs can only run when aes-crypto is enabled

This commit is contained in:
Chris Hennick 2024-05-23 12:39:37 -07:00
parent b0c666aa0c
commit e08548392d
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -298,7 +298,7 @@ impl<W: Write> Write for AesWriter<W> {
} }
} }
#[cfg(test)] #[cfg(all(test, feature = "aes-crypto"))]
mod tests { mod tests {
use std::io::{self, Read, Write}; use std::io::{self, Read, Write};