diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2016-08-20 20:58:49 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2016-08-20 20:58:49 +0100 |
commit | 7e29b8a770a45b68638f5dba9ad58b755ccb4749 (patch) | |
tree | 8e1a36d970191dfb8d95c86db3f87163f6d15047 /server/certutil | |
parent | 70b5eb8e1f220a2849a6759eda321205fcb79111 (diff) |
Run some tests in parallel
Diffstat (limited to 'server/certutil')
-rw-r--r-- | server/certutil/util_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/certutil/util_test.go b/server/certutil/util_test.go index abb8f10..df42b90 100644 --- a/server/certutil/util_test.go +++ b/server/certutil/util_test.go @@ -8,6 +8,7 @@ import ( ) func TestGetPublicKey(t *testing.T) { + t.Parallel() c, _, _, _, _ := ssh.ParseAuthorizedKey(testdata.Cert) if GetPublicKey(c.(*ssh.Certificate)) != string(testdata.Cert) { t.Fail() |