From f42a18d3c2cef7ee19dadad7c94c1d8af4cb1201 Mon Sep 17 00:00:00 2001 From: Victor HU Date: Thu, 7 May 2015 15:06:15 +0800 Subject: [PATCH] Update errors_test.go minor change in log message --- pkg/util/errors/errors_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/errors/errors_test.go b/pkg/util/errors/errors_test.go index 4269c8e0a0..403e7b2a45 100644 --- a/pkg/util/errors/errors_test.go +++ b/pkg/util/errors/errors_test.go @@ -91,7 +91,7 @@ func TestPluralAggregate(t *testing.T) { t.Errorf("expected '[abc, 123]', got %q", s) } if s := agg.Errors(); len(s) != 2 { - t.Errorf("expected one-element slice, got %#v", s) + t.Errorf("expected two-elements slice, got %#v", s) } if s := agg.Errors()[0].Error(); s != "abc" { t.Errorf("expected '[abc, 123]', got %q", s)