From 8129f2147f907b3cf773cb0b2481c84499006e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AC=E6=98=8E?= <83812544+Ed1s0nZ@users.noreply.github.com> Date: Tue, 23 Jun 2026 01:37:34 +0800 Subject: [PATCH] Delete internal/multiagent/eino_empty_response_test.go --- .../multiagent/eino_empty_response_test.go | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 internal/multiagent/eino_empty_response_test.go diff --git a/internal/multiagent/eino_empty_response_test.go b/internal/multiagent/eino_empty_response_test.go deleted file mode 100644 index 47de9e20..00000000 --- a/internal/multiagent/eino_empty_response_test.go +++ /dev/null @@ -1,21 +0,0 @@ -package multiagent - -import "testing" - -func TestShouldEinoEmptyResponseContinue(t *testing.T) { - t.Parallel() - hint := "(empty hint)" - out := &RunResult{Response: hint} - if !shouldEinoEmptyResponseContinue(out, hint, 3, 1) { - t.Fatal("expected continue when response is empty hint and trace grew") - } - if shouldEinoEmptyResponseContinue(out, hint, 1, 1) { - t.Fatal("expected no continue when trace did not grow") - } - if shouldEinoEmptyResponseContinue(&RunResult{Response: "hello"}, hint, 3, 1) { - t.Fatal("expected no continue when response has content") - } - if shouldEinoEmptyResponseContinue(nil, hint, 3, 1) { - t.Fatal("expected no continue for nil result") - } -}