Skip to content

Commit 61eaa89

Browse files
chore: fix Errorf formatting
1 parent 743edd3 commit 61eaa89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

monitor/service_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func TestMonitor_StoreStatistics(t *testing.T) {
109109
}
110110
if spec.ReplicaN != nil {
111111
if got, want := *spec.ReplicaN, monitor.MonitorRetentionPolicyReplicaN; got != want {
112-
t.Errorf("unexpected replica number: got=%q want=%q", got, want)
112+
t.Errorf("unexpected replica number: got=%d want=%d", got, want)
113113
}
114114
} else {
115115
t.Error("expected replica number in retention policy spec")

0 commit comments

Comments
 (0)