From 86c5194f6044b3f56cf399b085728cc1073cd36f Mon Sep 17 00:00:00 2001 From: Nils Pukropp Date: Fri, 21 Mar 2025 21:28:32 +0100 Subject: [PATCH] fixed annot test --- test_ex6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_ex6.py b/test_ex6.py index 417c0f6..3b74da5 100644 --- a/test_ex6.py +++ b/test_ex6.py @@ -342,7 +342,7 @@ class Ex6b_cut_at(unittest.TestCase): self.assertEqual(len(type_params), 1) T = type_params[0] self.assertTrue(check_annot(ex6_recursion.cut_at, [ - ex6_recursion.BTree[T]], ex6_recursion.BTree[T])) + ex6_recursion.BTree[T], T], ex6_recursion.BTree[T])) @no_input_test def test6_cut_at_basisfall(self):