From e27a3238bb713ce352e1086e365a0be7432713d1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 18:20:18 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_set_ops.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_set_ops.py b/tests/test_set_ops.py index f778a33..17f0d19 100644 --- a/tests/test_set_ops.py +++ b/tests/test_set_ops.py @@ -37,6 +37,7 @@ def test_intersect(): assert all(np.equal(res.start, [-2, 6, 14])) assert all(np.equal(res.width, [5, 3, 4])) + def test_intersect_ncls(): x = IRanges([1, 5, -2, 0, 14], [10, 5, 6, 12, 4]) y = IRanges([14, 0, -5, 6, 18], [7, 3, 8, 3, 3]) @@ -47,4 +48,4 @@ def test_intersect_ncls(): res = y.intersect_ncls(x) assert all(np.equal(res.start, [-2, 6, 14])) - assert all(np.equal(res.width, [5, 3, 4])) \ No newline at end of file + assert all(np.equal(res.width, [5, 3, 4]))