-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
bugSomething isn't workingSomething isn't working
Description
cel-python/features/math_ext.textproto
Lines 29 to 36 in bc75047
| test: { | |
| name: "binary_with_decimal" | |
| expr: "math.greatest(1, 1.0) == 1" | |
| } | |
| test: { | |
| name: "binary_with_uint" | |
| expr: "math.greatest(1, 1u) == 1" | |
| } |
I believe these tests are meant to check if the return value is True, but when run:
$ uv run behave -i math_ext -n greatest_int_result/binary_with_decimal
@conformance
Feature: math_ext # features/math_ext.feature:2
Tests for the math extension library.
@wip
Scenario: greatest_int_result/binary_with_decimal # features/math_ext.feature:27
When CEL expression 'math.greatest(1, 1.0) == 1' is evaluated # features/steps/integration_binding.py:400 0.067s
Then none is None # NoneThe Then none is None doesn't seem right. cc @hudlow
slott56hudlow
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working