File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
conformance/src/test/java/dev/cel/conformance Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,16 @@ _TESTS_TO_SKIP = [
140140 "math_ext/bit_not" ,
141141 "math_ext/bit_shift_left" ,
142142 "math_ext/bit_shift_right" ,
143+
144+ # Type inference edgecases around null(able) assignability.
145+ # These type check, but resolve to a different type.
146+ # list(int), want list(wrapper(int))
147+ "type_deductions/wrappers/wrapper_promotion" ,
148+ # list(null), want list(Message)
149+ "type_deductions/legacy_nullable_types/null_assignable_to_message_parameter_candidate" ,
150+ "type_deductions/legacy_nullable_types/null_assignable_to_abstract_parameter_candidate" ,
151+ "type_deductions/legacy_nullable_types/null_assignable_to_duration_parameter_candidate" ,
152+ "type_deductions/legacy_nullable_types/null_assignable_to_timestamp_parameter_candidate" ,
143153]
144154
145155conformance_test (
You can’t perform that action at this time.
0 commit comments