diff --git a/pkg/cli/mcp_logs_guardrail_integration_test.go b/pkg/cli/mcp_logs_guardrail_integration_test.go index c59fa5de2f4..2350ac99ebd 100644 --- a/pkg/cli/mcp_logs_guardrail_integration_test.go +++ b/pkg/cli/mcp_logs_guardrail_integration_test.go @@ -90,10 +90,6 @@ func TestMCPServer_LogsGuardrail(t *testing.T) { t.Error("Schema should have fields") } - if len(guardrail.SuggestedQueries) == 0 { - t.Error("Should have suggested queries") - } - // Verify some expected fields are in the schema expectedFields := []string{"summary", "runs", "tool_usage", "errors_and_warnings"} for _, field := range expectedFields { @@ -101,15 +97,5 @@ func TestMCPServer_LogsGuardrail(t *testing.T) { t.Errorf("Schema should include field '%s'", field) } } - - // Verify suggested queries have proper structure - for i, query := range guardrail.SuggestedQueries { - if query.Description == "" { - t.Errorf("Query %d should have description", i) - } - if query.Query == "" { - t.Errorf("Query %d should have query string", i) - } - } }) }