Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/note_encryption.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,9 @@ mod tests {

#[test]
fn test_vectors() {
let test_vectors = crate::test_vectors::note_encryption::test_vectors();
let test_vectors1 = crate::test_vectors::note_encryption::test_vectors();
let test_vectors2 = crate::test_vectors::note_encryption2::test_vectors();
let test_vectors = test_vectors1.iter().chain(test_vectors2.iter());

for tv in test_vectors {
//
Expand Down
1 change: 1 addition & 0 deletions src/test_vectors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ pub(crate) mod commitment_tree;
pub(crate) mod keys;
pub(crate) mod merkle_path;
pub(crate) mod note_encryption;
pub(crate) mod note_encryption2;
Loading