Skip to content

Commit

Permalink
chore: fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
amolero-nr committed Oct 24, 2023
1 parent 2495dbf commit d69097b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions pkg/changetracking/changetracking_api_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d69097b

Please sign in to comment.