From a4927fc78cdba01737a27bcec9706a3fdd3a93c3 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Thu, 31 Jul 2025 14:48:58 +0200 Subject: [PATCH] Update tests/test_utils_eval.py --- tests/test_utils_eval.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_eval.py b/tests/test_utils_eval.py index 39f575ea1..df650f24e 100644 --- a/tests/test_utils_eval.py +++ b/tests/test_utils_eval.py @@ -24,7 +24,7 @@ from slic.utils.eval import * ("3 + -4", -1), ("True + 1", 2), ("string", "string"), - ("1e1000 * 1e1000", inf), + ("1e1000 * 1e1000", float("inf")), ("'a' + 'b'", "ab") # string concatenation supported !!! ]) def test_arithmetic_eval_valid(expr, expected):