aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-02-05 12:11:43 +0300
committerFrederick Muriuki Muriithi2024-02-05 12:11:43 +0300
commit949ea71eb721a3f5bdff3ba10f7dd7c70899d560 (patch)
tree5ea0674953489ce83ffa11c2b689d3c8e31ebede /tests
parentab71b34b97f3f1eee52b5688f41644541535f281 (diff)
downloadgn-uploader-949ea71eb721a3f5bdff3ba10f7dd7c70899d560.tar.gz
Fix linting and type errors.
Diffstat (limited to 'tests')
-rw-r--r--tests/r_qtl/test_r_qtl2_qc.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/r_qtl/test_r_qtl2_qc.py b/tests/r_qtl/test_r_qtl2_qc.py
index 5fcccf5..9b19ae2 100644
--- a/tests/r_qtl/test_r_qtl2_qc.py
+++ b/tests/r_qtl/test_r_qtl2_qc.py
@@ -47,8 +47,7 @@ def test_bundle_files_list(filepath, expected):
THEN: verify that ALL files listed in the control file are returned.
"""
with ZipFile(Path(filepath).absolute(), "r") as zfile:
- assert qc.bundle_files_list(
- zfile, rqtl2.control_data(zfile)) == expected
+ assert qc.bundle_files_list(rqtl2.control_data(zfile)) == expected
@pytest.mark.unit_test
@pytest.mark.parametrize(