From a9443de7c5759398804acaa3fd9ccfb196557cfe Mon Sep 17 00:00:00 2001 From: Joey Gibson Date: Fri, 3 Apr 2015 00:03:30 -0400 Subject: [PATCH] Fix vet warnings in pkg/requestdecorator/requestdecorator_test.go #12041 Signed-off-by: Joey Gibson --- pkg/requestdecorator/requestdecorator_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/requestdecorator/requestdecorator_test.go b/pkg/requestdecorator/requestdecorator_test.go index 12e2194f01..b2c1fb3b97 100644 --- a/pkg/requestdecorator/requestdecorator_test.go +++ b/pkg/requestdecorator/requestdecorator_test.go @@ -180,7 +180,7 @@ func TestRequestFactory(t *testing.T) { requestFactory := NewRequestFactory(ad, uad) - if dlen := requestFactory.GetDecorators(); len(dlen) != 2 { + if dlen := len(requestFactory.GetDecorators()); dlen != 2 { t.Fatalf("Expected to have two decorators, got %d", dlen) } @@ -209,7 +209,7 @@ func TestRequestFactoryNewRequestWithDecorators(t *testing.T) { requestFactory := NewRequestFactory(ad) - if dlen := requestFactory.GetDecorators(); len(dlen) != 1 { + if dlen := len(requestFactory.GetDecorators()); dlen != 1 { t.Fatalf("Expected to have one decorators, got %d", dlen) } @@ -235,14 +235,14 @@ func TestRequestFactoryNewRequestWithDecorators(t *testing.T) { func TestRequestFactoryAddDecorator(t *testing.T) { requestFactory := NewRequestFactory() - if dlen := requestFactory.GetDecorators(); len(dlen) != 0 { + if dlen := len(requestFactory.GetDecorators()); dlen != 0 { t.Fatalf("Expected to have zero decorators, got %d", dlen) } ad := NewAuthDecorator("test", "password") requestFactory.AddDecorator(ad) - if dlen := requestFactory.GetDecorators(); len(dlen) != 1 { + if dlen := len(requestFactory.GetDecorators()); dlen != 1 { t.Fatalf("Expected to have one decorators, got %d", dlen) } }