From 1380fc662baa093515e5d00f1bee879872e70ce4 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Tue, 14 Oct 2025 23:08:32 +0200 Subject: [PATCH] test compile fixed --- tests/test_compile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_compile.py b/tests/test_compile.py index 6b37f91..5a3c655 100644 --- a/tests/test_compile.py +++ b/tests/test_compile.py @@ -48,7 +48,8 @@ def test_compile(): c1 = CPVariable(4) c2 = CPVariable(2) - ret = function(c1, c2) + #ret = function(c1, c2) + ret = [c1 / 4 + 3 * 3.6] out = [Write(r) for r in ret]