Skip to content

Commit

Permalink
chore: fix asserts in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
clintval committed Oct 4, 2024
1 parent e22b583 commit 80ea938
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/offtarget/test_bwa.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def test_header_is_properly_constructed(ref_fasta: Path) -> None:
assert header["SQ"] == [{"LN": 10001, "SN": "chr1"}]
assert len(header["PG"]) == 1
program_group: dict[str, str] = cast(list[dict[str, str]], header["PG"])[0]
program_group["ID"] = "bwa"
program_group["PN"] = "bwa"
assert program_group["ID"] == "bwa"
assert program_group["PN"] == "bwa"


def test_map_one_uniquely_mapped(ref_fasta: Path) -> None:
Expand Down

0 comments on commit 80ea938

Please sign in to comment.