Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
varunch77 committed Jan 23, 2025
1 parent bf32e2d commit 2192042
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/entity/entity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ func TestResourceMetrics(t *testing.T) {
{"Name": "cpu", "Value": "cpu-total"}
]
}`, instanceId))
req = BuildListEntitiesForMetricRequest(requestBody, region)
req, err := common.BuildListEntitiesForMetricRequest(requestBody, region)
assert.NoError(t, err, "Error building ListEntitiesForMetric request")

// send the request
client := &http.Client{}
Expand Down

0 comments on commit 2192042

Please sign in to comment.