diff options
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/computations/test_slink.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/computations/test_slink.py b/tests/unit/computations/test_slink.py index 8ccbda5..da17ac3 100644 --- a/tests/unit/computations/test_slink.py +++ b/tests/unit/computations/test_slink.py @@ -204,6 +204,6 @@ class TestSlink(TestCase): self.assertEqual(nearest(md, mc, ml), ed) def test_slink_wrong_data_returns_empty_list(self): - for data in [1, "test", [], 2.945, nearest]: + for data in [1, "test", [], 2.945, nearest, [0]]: with self.subTest(data=data): self.assertEqual(slink(data), []) |