From 962a367178264301aff1b8ca29e6ef50a4e68ed6 Mon Sep 17 00:00:00 2001 From: Jonathan Tatum Date: Sat, 10 Jan 2026 18:38:12 +0000 Subject: [PATCH] Enable two var comprehension conformance tests. --- conformance/BUILD.bazel | 1 + conformance/conformance_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/conformance/BUILD.bazel b/conformance/BUILD.bazel index cdb8d6dfe..12e3ff035 100644 --- a/conformance/BUILD.bazel +++ b/conformance/BUILD.bazel @@ -19,6 +19,7 @@ _ALL_TESTS = [ "@dev_cel_expr//tests/simple:testdata/lists.textproto", "@dev_cel_expr//tests/simple:testdata/logic.textproto", "@dev_cel_expr//tests/simple:testdata/macros.textproto", + "@dev_cel_expr//tests/simple:testdata/macros2.textproto", "@dev_cel_expr//tests/simple:testdata/math_ext.textproto", "@dev_cel_expr//tests/simple:testdata/namespace.textproto", "@dev_cel_expr//tests/simple:testdata/optionals.textproto", diff --git a/conformance/conformance_test.go b/conformance/conformance_test.go index 4b37ea2e8..417310287 100644 --- a/conformance/conformance_test.go +++ b/conformance/conformance_test.go @@ -91,6 +91,7 @@ func init() { ext.Math(), ext.Protos(), ext.Strings(), + ext.TwoVarComprehensions(), cel.Lib(celBlockLib{}), cel.EnableIdentifierEscapeSyntax(), }