Fix formatting in TestListAssistantTags to improve readability

- Removed unnecessary blank lines in the test function, enhancing code clarity and maintainability.
This commit is contained in:
Max 2025-11-08 11:44:19 +08:00
parent 17de4e14ed
commit 42b5e17d78

View file

@ -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{})