Skip to content

Commit

Permalink
fix testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMoelder committed Nov 12, 2024
1 parent 8e83763 commit 0528a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bam/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2997,7 +2997,7 @@ CCCCCCCCCCCCCCCCCCC"[..],
fn test_bam_header_sync() {
let reader = Reader::from_path("test/test_issue_156_no_text.bam").unwrap();
let header_hashmap = Header::from_template(reader.header()).to_hashmap();
let header_refseqs = header_hashmap.get("SQ".into()).unwrap();
let header_refseqs = header_hashmap.get("SQ").unwrap();
assert_eq!(header_refseqs[0].get("SN").unwrap(), "ref_1",);
assert_eq!(header_refseqs[0].get("LN").unwrap(), "10000000",);
}
Expand Down

0 comments on commit 0528a3a

Please sign in to comment.