From 55320aa8b0fb73c39b0a78380defc3f0574d1fef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6khan=20=C3=96zelo=C4=9Flu?= Date: Thu, 25 Nov 2021 11:21:10 +0300 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gökhan Özeloğlu --- prometheus/push/push_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/push/push_test.go b/prometheus/push/push_test.go index 99155b0..e55e966 100644 --- a/prometheus/push/push_test.go +++ b/prometheus/push/push_test.go @@ -199,7 +199,7 @@ func TestPush(t *testing.T) { Collector(metric1). Collector(metric2). Push(); err == nil { - t.Error("push with empty job succeded") + t.Error("push with empty job succeeded") } else { if got, want := err, errJobEmpty; got != want { t.Errorf("got error %q, want %q", got, want)