File tree 1 file changed +10
-0
lines changed
conformance/src/test/java/dev/cel/conformance
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,16 @@ _TESTS_TO_SKIP = [
140
140
"math_ext/bit_not" ,
141
141
"math_ext/bit_shift_left" ,
142
142
"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" ,
143
153
]
144
154
145
155
conformance_test (
You can’t perform that action at this time.
0 commit comments