Skip to content

Commit 4a47e75

Browse files
jnthntatumcopybara-github
authored andcommitted
Opt out of type deduction conformance tests that currently fail for the Java checker.
PiperOrigin-RevId: 715572146
1 parent b59c3fd commit 4a47e75

File tree

1 file changed

+10
-0
lines changed
  • conformance/src/test/java/dev/cel/conformance

1 file changed

+10
-0
lines changed

conformance/src/test/java/dev/cel/conformance/BUILD.bazel

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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

145155
conformance_test(

0 commit comments

Comments
 (0)