Skip to content

Commit

Permalink
style: whitespace in new test
Browse files Browse the repository at this point in the history
  • Loading branch information
theJasonFan committed Aug 19, 2024
1 parent 24b618c commit 62d7e8c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/bin/commands/demux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,6 @@ mod tests {

let output_path = output_dir.join("Sample0000.R1.fq.gz");
let fq_reads = read_fastq(&output_path);

assert_eq!(fq_reads.len(), 1);
assert_equal(
&fq_reads[0],
Expand All @@ -1465,7 +1464,6 @@ mod tests {

let output_path = output_dir.join("Sample0001.R1.fq.gz");
let fq_reads = read_fastq(&output_path);

assert_eq!(fq_reads.len(), 1);
assert_equal(
&fq_reads[0],
Expand All @@ -1480,7 +1478,6 @@ mod tests {
let unmatched_path = output_dir.join("unmatched.R1.fq.gz");
let unmatched_reads = read_fastq(&unmatched_path);
assert_eq!(unmatched_reads.len(), 1);

assert_equal(
&unmatched_reads[0],
&OwnedRecord {
Expand Down

0 comments on commit 62d7e8c

Please sign in to comment.