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 /client | |
parent | 30802e07b2d84fbc213b490d3402707dffe60096 (diff) |
remove calls to t.Parallel()
Diffstat (limited to 'client')
-rw-r--r-- | client/client_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/client/client_test.go b/client/client_test.go index b7df3fd..713b2d5 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -19,7 +19,6 @@ import ( ) func TestLoadCert(t *testing.T) { - t.Parallel() priv, _ := ssh.ParseRawPrivateKey(testdata.Priv) key := priv.(*rsa.PrivateKey) pub, _ := ssh.NewPublicKey(&key.PublicKey) @@ -59,7 +58,6 @@ func TestLoadCert(t *testing.T) { } func TestSignGood(t *testing.T) { - t.Parallel() res := &lib.SignResponse{ Status: "ok", Response: string(testdata.Cert), @@ -88,7 +86,6 @@ func TestSignGood(t *testing.T) { } func TestSignBad(t *testing.T) { - t.Parallel() res := &lib.SignResponse{ Status: "error", Response: `{"response": "error"}`, |