From d2e831b83a7d7f398f4bc2e6aa47260c9259ae94 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Tue, 14 Oct 2025 23:09:07 +0200 Subject: [PATCH] other test case: c1 // 3.3 + 5 --- tests/test_compile.py | 2 +- tools/make_example.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_compile.py b/tests/test_compile.py index 0f876c0..a44e104 100644 --- a/tests/test_compile.py +++ b/tests/test_compile.py @@ -49,7 +49,7 @@ def test_compile(): c2 = CPVariable(2) #ret = function(c1, c2) - ret = [c1 // 4] + ret = [c1 // 3.3 + 5] out = [Write(r) for r in ret] diff --git a/tools/make_example.py b/tools/make_example.py index 3c70f17..b9333f7 100644 --- a/tools/make_example.py +++ b/tools/make_example.py @@ -8,7 +8,7 @@ def test_compile() -> None: c1 = CPVariable(9) #ret = [c1 / 4, c1 / -4, c1 // 4, c1 // -4, (c1 * -1) // 4] - ret = [c1 // 4] + ret = [c1 // 3.3 + 5] out = [Write(r) for r in ret]