diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2017-04-10 22:13:12 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2017-04-10 22:13:12 +0100 |
commit | d919f85c19cb754b1507b45e1609292f495ffff9 (patch) | |
tree | 6ce4baf61ecfe3ea952c2a28d2934d2c61f8036e /server/signer | |
parent | 30802e07b2d84fbc213b490d3402707dffe60096 (diff) |
remove calls to t.Parallel()
Diffstat (limited to 'server/signer')
-rw-r--r-- | server/signer/signer_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/signer/signer_test.go b/server/signer/signer_test.go index 3bbdbf9..726a69b 100644 --- a/server/signer/signer_test.go +++ b/server/signer/signer_test.go @@ -25,7 +25,6 @@ var ( ) func TestCert(t *testing.T) { - t.Parallel() r := &lib.SignRequest{ Key: string(testdata.Pub), ValidUntil: time.Now().Add(1 * time.Hour), @@ -54,7 +53,6 @@ func TestCert(t *testing.T) { } func TestRevocationList(t *testing.T) { - t.Parallel() r := &lib.SignRequest{ Key: string(testdata.Pub), ValidUntil: time.Now().Add(1 * time.Hour), @@ -82,7 +80,6 @@ func TestRevocationList(t *testing.T) { } func TestPermissions(t *testing.T) { - t.Parallel() r := &lib.SignRequest{ Key: string(testdata.Pub), ValidUntil: time.Now().Add(1 * time.Hour), |