We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a00d88 commit bd6131eCopy full SHA for bd6131e
1 file changed
divref/tests/test_haplotype.py
@@ -73,7 +73,9 @@ def test_get_haplo_sequence_invalid_reference_genome_raises(
73
"""get_haplo_sequence should raise KeyError when given an unregistered reference genome."""
74
variant = _make_variant(position=100, ref="A", alt="C")
75
with pytest.raises(KeyError, match="nonexistent_genome"):
76
- get_haplo_sequence(context_size=2, variants=[variant], reference_genome="nonexistent_genome")
+ get_haplo_sequence(
77
+ context_size=2, variants=[variant], reference_genome="nonexistent_genome"
78
+ )
79
80
81
def test_get_haplo_sequence_empty_list_raises() -> None:
0 commit comments