36:bd274615ce72 Go to Latest
Allow executing tests in parallel. Add t.Parallel() to tests so they can execute in parallel.
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(),