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 /lib | |
parent | 30802e07b2d84fbc213b490d3402707dffe60096 (diff) |
remove calls to t.Parallel()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/util_test.go b/lib/util_test.go index b1f18a8..17e08f3 100644 --- a/lib/util_test.go +++ b/lib/util_test.go @@ -9,7 +9,6 @@ import ( ) func TestGetPublicKey(t *testing.T) { - t.Parallel() c, _, _, _, _ := ssh.ParseAuthorizedKey(testdata.Cert) if !reflect.DeepEqual(GetPublicKey(c.(*ssh.Certificate)), testdata.Cert) { t.Fail() |