aboutsummaryrefslogtreecommitdiff
path: root/client/client_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/client_test.go')
-rw-r--r--client/client_test.go3
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"}`,