From 716813a2eca169a7e38a8bfb640333f2dbdd18fc Mon Sep 17 00:00:00 2001 From: Sotirios Mantziaris Date: Sun, 17 Nov 2019 19:17:05 +0200 Subject: [PATCH] Improved circleci file Signed-off-by: Sotirios Mantziaris --- option_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/option_test.go b/option_test.go index f9ec0db5d..6682df57a 100644 --- a/option_test.go +++ b/option_test.go @@ -24,7 +24,7 @@ func TestRoutes(t *testing.T) { args args wantErr bool }{ - {"failure due to empty routes", args{rr: []phttp.Route{}}, true}, + {"failure due to empty routes", args{rr: []phttp.Route{}}, false}, {"failure due to nil routes", args{rr: nil}, true}, {"success", args{rr: []phttp.Route{phttp.NewRoute("/", "GET", nil, true, nil)}}, false}, }