From 56d0b82d2f54792c447617c400a443e3f9165fca Mon Sep 17 00:00:00 2001 From: "Matthias C. M. Troffaes" Date: Thu, 19 Sep 2024 14:45:55 +0100 Subject: [PATCH] Refer to PR. --- test/test_redundant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_redundant.py b/test/test_redundant.py index 245ceab..5d965b2 100644 --- a/test/test_redundant.py +++ b/test/test_redundant.py @@ -87,7 +87,7 @@ def test_redundant_generators_4() -> None: assert_redundant_equal(mat, 0, True, [0, 0]) assert_redundant_equal(mat, 1, True, [0, 0]) assert_redundant_equal(mat, 2, False, [1, -0.5]) - # TODO is this a bug in cddlib? no certificate for rows 0 and 1... + # TODO bug in cddlib... https://github.com/cddlib/cddlib/pull/73 assert_redundant_equal(mat, 0, False, [0, 0], True) assert_redundant_equal(mat, 1, False, [0, 0], True) assert_redundant_equal(mat, 2, False, [1, -0.5], True)