auth

Paddy 2014-09-07 Parent:14599a5c7819 Child:3a6a65ed380c

36:bd274615ce72 Go to Latest

auth/grant_test.go

Allow executing tests in parallel. Add t.Parallel() to tests so they can execute in parallel.

History
     1.1 --- a/grant_test.go	Sun Sep 07 04:49:45 2014 -0400
     1.2 +++ b/grant_test.go	Sun Sep 07 19:06:17 2014 -0400
     1.3 @@ -35,6 +35,7 @@
     1.4  }
     1.5  
     1.6  func TestGrantStoreSuccess(t *testing.T) {
     1.7 +	t.Parallel()
     1.8  	grant := Grant{
     1.9  		Code:        "code",
    1.10  		Created:     time.Now(),