Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 704337113
  • Loading branch information
l46kok authored and copybara-github committed Dec 9, 2024
1 parent 38a9f47 commit 7cc9f70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conformance/src/test/java/dev/cel/conformance/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ java_library(
"//common:options",
"//common/internal:default_instance_message_factory",
"//common/types",
"//common/types:cel_types",
"//common/types:cel_proto_types",
"//common/types:type_providers",
"//compiler",
"//extensions",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
import dev.cel.common.CelOptions;
import dev.cel.common.CelValidationResult;
import dev.cel.common.internal.DefaultInstanceMessageFactory;
import dev.cel.common.types.CelProtoTypes;
import dev.cel.common.types.CelType;
import dev.cel.common.types.CelTypes;
import dev.cel.common.types.ListType;
import dev.cel.common.types.MapType;
import dev.cel.common.types.SimpleType;
Expand Down Expand Up @@ -377,7 +377,7 @@ public void evaluate() throws Throwable {
assertThat(response.hasError()).isFalse();
response = getChecker(test).check(response.getAst());
assertThat(response.hasError()).isFalse();
Type resultType = CelTypes.celTypeToType(response.getAst().getResultType());
Type resultType = CelProtoTypes.celTypeToType(response.getAst().getResultType());

if (test.getCheckOnly()) {
assertThat(test.hasTypedResult()).isTrue();
Expand Down

0 comments on commit 7cc9f70

Please sign in to comment.