From d07709ed7b798a1eca3394202a241e6f36fe9695 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Sat, 16 Apr 2016 21:42:07 -0700 Subject: [PATCH] crypto/x509: gofmt Change-Id: I05659a836612f958083fea9a27805eb9f0ac0836 Reviewed-on: https://go-review.googlesource.com/22145 Run-TryBot: Josh Bleecher Snyder TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- src/crypto/x509/x509_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/x509/x509_test.go b/src/crypto/x509/x509_test.go index a48d0d918a..c6448d39ab 100644 --- a/src/crypto/x509/x509_test.go +++ b/src/crypto/x509/x509_test.go @@ -1183,7 +1183,7 @@ func TestNoAuthorityKeyIdInSelfSignedCert(t *testing.T) { t.Fatalf("self-signed certificate contained default authority key id") } - template.AuthorityKeyId = []byte{1,2,3,4} + template.AuthorityKeyId = []byte{1, 2, 3, 4} if cert := serialiseAndParse(t, template); len(cert.AuthorityKeyId) == 0 { t.Fatalf("self-signed certificate erased explicit authority key id") }