Skip to content

Commit

Permalink
more clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft committed Oct 12, 2023
1 parent b1850a0 commit 98a0baf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aws-lc-rs/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ macro_rules! test_file {
}

/// A test input file.
#[derive(Clone)]
#[derive(Clone, Copy)]
pub struct File<'a> {
/// The name (path) of the file.
pub file_name: &'a str,
Expand Down
2 changes: 1 addition & 1 deletion aws-lc-rs/tests/aead_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fn test_aead_all(aead_alg: &'static aead::Algorithm, test_file: test::File) {

for seal in &sealers {
for open in &openers {
test_aead(aead_alg, seal, open, test_file.clone())
test_aead(aead_alg, seal, open, test_file);
}
}
}
Expand Down

0 comments on commit 98a0baf

Please sign in to comment.