Skip to content

Commit

Permalink
test: Tests in aes.rs can only run when aes-crypto is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed May 23, 2024
1 parent b0c666a commit e085483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ impl<W: Write> Write for AesWriter<W> {
}
}

#[cfg(test)]
#[cfg(all(test, feature = "aes-crypto"))]
mod tests {
use std::io::{self, Read, Write};

Expand Down

0 comments on commit e085483

Please sign in to comment.