diff options
Diffstat (limited to 'tests/r_qtl/test_r_qtl2_gmap.py')
-rw-r--r-- | tests/r_qtl/test_r_qtl2_gmap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/r_qtl/test_r_qtl2_gmap.py b/tests/r_qtl/test_r_qtl2_gmap.py index 64774c2..ba46c42 100644 --- a/tests/r_qtl/test_r_qtl2_gmap.py +++ b/tests/r_qtl/test_r_qtl2_gmap.py @@ -44,5 +44,5 @@ def test_parse_map_files(relpath, mapfiletype, expected): THEN: ensure the parsed data is as expected. """ with ZipFile(Path(relpath).absolute(), "r") as zfile: - assert rqtl2.map_data( - zfile, mapfiletype, rqtl2.control_data(zfile)) == expected + assert tuple(rqtl2.map_data( + zfile, mapfiletype, rqtl2.control_data(zfile))) == expected |