Update tests/test_utils_eval.py
Run CI Tests / test (push) Successful in 51s

This commit is contained in:
2025-07-31 15:02:21 +02:00
parent 682466ec7e
commit 4c719592f3
+1 -1
View File
@@ -23,7 +23,7 @@ from slic.utils.eval import *
("3 + +4", 7),
("3 + -4", -1),
("True + 1", 2),
('string', 'string'),
("'string'", 'string'),
("1e1000 * 1e1000", float("inf")),
("'a' + 'b'", "ab") # string concatenation supported !!!
])