From 774f643d83b1735f3c05d497d3486b081b953e84 Mon Sep 17 00:00:00 2001 From: tpriest0 Date: Wed, 21 Feb 2024 14:00:42 +0100 Subject: [PATCH] Just a quick test --- test_rarefy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_rarefy.py b/test_rarefy.py index b97610f..50150cb 100644 --- a/test_rarefy.py +++ b/test_rarefy.py @@ -5,7 +5,7 @@ def test_basic_rarefaction(): x = np.array([10, 20, 30, 40, 50]) rarefied = rarefy(x, depth=100, iterations=1, seed=42) - assert len(rarefied) == len(x) + assert len(rarefied) == len(x assert sum(np.isnan(rarefied)) == 0