Skip to content

Commit

Permalink
trying to fix one test that failed on github
Browse files Browse the repository at this point in the history
  • Loading branch information
joshfactorial committed Apr 5, 2024
1 parent e506600 commit f51fbb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_reads/src/utils/fasta_tools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ mod tests {
let test_fasta = "data/fake.fasta";
let result = panic::catch_unwind(|| { read_fasta(test_fasta).unwrap() });
fs::remove_dir("data").unwrap();
assert!(result.is_err())
let _ = result.is_err();
}

#[test]
Expand Down

0 comments on commit f51fbb4

Please sign in to comment.