Skip to content

Commit

Permalink
Merge pull request #573 from alrs/log-format
Browse files Browse the repository at this point in the history
Fixed log formatting in cloudwatch package tests.
  • Loading branch information
ChrisHines committed Jul 13, 2017
2 parents e9f0a17 + a887a20 commit 8931ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metrics/cloudwatch/cloudwatch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func TestCounterLowSendConcurrency(t *testing.T) {

for i, name := range names {
if svc.valuesReceived[name] != wants[i] {
t.Fatal("want %f, have %f", wants[i], svc.valuesReceived[name])
t.Fatalf("want %f, have %f", wants[i], svc.valuesReceived[name])
}
if err := testDimensions(svc, name, labels[i], values[i]); err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 8931ae0

Please sign in to comment.