Skip to content

Commit

Permalink
style: format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
deliaBlue committed Jan 29, 2024
1 parent 533ee99 commit 172a5c7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/tests/test_mirna_quantification.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests for module 'mirna_quantification.py'."""

import argparse
from pathlib import Path
import sys
Expand Down Expand Up @@ -344,9 +345,10 @@ def test_main_iso_sam_file(
args = parse_arguments().parse_args()
main(args)

with open(iso_out_table, "r") as expected, open(
mirna_output, "r"
) as out_file:
with (
open(iso_out_table, "r") as expected,
open(mirna_output, "r") as out_file,
):
assert out_file.read() == expected.read()

def test_main_mirna_sam_file(
Expand Down

0 comments on commit 172a5c7

Please sign in to comment.