From d69097b6d51c2a6ae1de124867b02863f3756148 Mon Sep 17 00:00:00 2001 From: Alfredo Molero Date: Tue, 24 Oct 2023 13:06:59 -0400 Subject: [PATCH] chore: fix type error --- pkg/changetracking/changetracking_api_integration_test.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkg/changetracking/changetracking_api_integration_test.go b/pkg/changetracking/changetracking_api_integration_test.go index cfe669487..8e6ef0bb8 100644 --- a/pkg/changetracking/changetracking_api_integration_test.go +++ b/pkg/changetracking/changetracking_api_integration_test.go @@ -21,12 +21,7 @@ func TestChangeTrackingCreateDeployment_Basic(t *testing.T) { a := newIntegrationTestClient(t) - var customAttributes = map[string]interface{}{ - "a": 1, - "b": "two", - "c": 1.5, - "d": true, - } + var customAttributes = `{"a":"1","b":"two","c":"1.5","d":"true"}` attrs := make(map[string]interface{}) err := json.Unmarshal([]byte(customAttributes), &attrs) if err != nil {