From 42b5e17d7885bb40a6bbd770c657101bf0a70752 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 8 Nov 2025 11:44:19 +0800 Subject: [PATCH] Fix formatting in TestListAssistantTags to improve readability - Removed unnecessary blank lines in the test function, enhancing code clarity and maintainability. --- openapi/tests/agent/assistant_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openapi/tests/agent/assistant_test.go b/openapi/tests/agent/assistant_test.go index 0b8b4c61..d998059d 100644 --- a/openapi/tests/agent/assistant_test.go +++ b/openapi/tests/agent/assistant_test.go @@ -754,7 +754,7 @@ func TestListAssistantTags(t *testing.T) { data, hasData := response["data"].([]interface{}) if hasData { t.Logf("Successfully retrieved %d tags", len(data)) - + // Verify tag structure if len(data) > 0 { tag, ok := data[0].(map[string]interface{})