From cb5d43e8e90d87eb08cc3aeccca2314a7561f31e Mon Sep 17 00:00:00 2001 From: Jonathan Tatum Date: Mon, 16 Mar 2026 20:57:52 +0000 Subject: [PATCH 1/2] Delete debugging log statement from test --- cel/fieldpaths_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cel/fieldpaths_test.go b/cel/fieldpaths_test.go index e5f90793..7f5ec2af 100644 --- a/cel/fieldpaths_test.go +++ b/cel/fieldpaths_test.go @@ -18,11 +18,6 @@ func TestFieldPathsForTestAllTypes(t *testing.T) { p := env.CELTypeProvider() paths := fieldPathsForType(p, "t", ObjectType("cel.expr.conformance.proto3.NestedTestAllTypes")) - pathStrings := make([]string, 0, len(paths)) - for i, path := range paths { - t.Logf("path %d: %v", i, path.path) - pathStrings = append(pathStrings, path.path) - } tcs := []struct { path string From c1458a60666df6e245f3ade1265c168d6ee23364 Mon Sep 17 00:00:00 2001 From: Jonathan Tatum Date: Mon, 16 Mar 2026 21:00:22 +0000 Subject: [PATCH 2/2] Fix function comment format --- cel/prompt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cel/prompt.go b/cel/prompt.go index 09cd5ace..1529680f 100644 --- a/cel/prompt.go +++ b/cel/prompt.go @@ -80,7 +80,7 @@ func AuthoringPrompt(env *Env) (*Prompt, error) { }, nil } -// AuthoringPrompt creates a prompt template from a CEL environment for the purpose of AI-assisted authoring. +// AuthoringPromptWithFieldPaths creates a prompt template from a CEL environment for the purpose of AI-assisted authoring. // Includes documentation for all of the reachable field paths in the environment. func AuthoringPromptWithFieldPaths(env *Env) (*Prompt, error) { p, err := AuthoringPrompt(env)