From a8cae8b200512acb6459a53df578d64c8ad81bb9 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Tue, 18 Mar 2025 17:11:38 +0300 Subject: [PATCH] fix type in the tests --- client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_test.go b/client_test.go index 398be36..b50ff9f 100644 --- a/client_test.go +++ b/client_test.go @@ -6214,7 +6214,7 @@ func TestClient_Cost(t *testing.T) { costs, status, err := c.Costs(CostsRequest{ Filter: CostsFilter{ - Ids: []string{strconv.Itoa(id)}, + Ids: []int{id}, }, Limit: 20, Page: 1,