Skip to content

Commit

Permalink
ci: fix static code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
deliaBlue committed Aug 18, 2024
1 parent 55712c7 commit ce0d897
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/tests/test_iso_name_tagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def test_parse_intersect_output_alias_id(self, bed_sam, intersect_dicts):
in_bed, in_sam, out_f = bed_sam
out_name, out_id_alias, out_ext_3 = intersect_dicts

out_inter = parse_intersect_output(intersect_file=in_bed, id="alias")
out_inter = parse_intersect_output(intersect_file=in_bed, ID="alias")

assert sorted(out_inter.items()) == sorted(out_id_alias.items())

Expand All @@ -252,7 +252,7 @@ def test_parse_intersect_output_id_id(self, bed_sam, intersect_dicts):
in_bed, in_sam, out_f = bed_sam
out_name, out_id_alias, out_ext_3 = intersect_dicts

out_inter = parse_intersect_output(intersect_file=in_bed, id="id")
out_inter = parse_intersect_output(intersect_file=in_bed, ID="id")

assert sorted(out_inter.items()) == sorted(out_id_alias.items())

Expand Down

0 comments on commit ce0d897

Please sign in to comment.