From d919f85c19cb754b1507b45e1609292f495ffff9 Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Mon, 10 Apr 2017 22:13:12 +0100 Subject: remove calls to t.Parallel() --- server/handlers_test.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'server/handlers_test.go') diff --git a/server/handlers_test.go b/server/handlers_test.go index b2646a3..a08d638 100644 --- a/server/handlers_test.go +++ b/server/handlers_test.go @@ -49,7 +49,6 @@ func newContext(t *testing.T) *appContext { } func TestLoginHandler(t *testing.T) { - t.Parallel() req, _ := http.NewRequest("GET", "/auth/login", nil) resp := httptest.NewRecorder() loginHandler(newContext(t), resp, req) @@ -59,7 +58,6 @@ func TestLoginHandler(t *testing.T) { } func TestCallbackHandler(t *testing.T) { - t.Parallel() req, _ := http.NewRequest("GET", "/auth/callback", nil) req.Form = url.Values{"state": []string{"state"}, "code": []string{"abcdef"}} resp := httptest.NewRecorder() @@ -72,7 +70,6 @@ func TestCallbackHandler(t *testing.T) { } func TestRootHandler(t *testing.T) { - t.Parallel() req, _ := http.NewRequest("GET", "/", nil) resp := httptest.NewRecorder() ctx := newContext(t) @@ -88,7 +85,6 @@ func TestRootHandler(t *testing.T) { } func TestRootHandlerNoSession(t *testing.T) { - t.Parallel() req, _ := http.NewRequest("GET", "/", nil) resp := httptest.NewRecorder() ctx := newContext(t) @@ -99,7 +95,6 @@ func TestRootHandlerNoSession(t *testing.T) { } func TestSignRevoke(t *testing.T) { - t.Parallel() s, _ := json.Marshal(&lib.SignRequest{ Key: string(testdata.Pub), ValidUntil: time.Now().UTC().Add(1 * time.Hour), -- cgit v1.2.3