From 504a305c626e7ef015e34147731bda8825903cc6 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Fri, 6 Oct 2017 13:03:52 -0700 Subject: [PATCH] crypto/x509: reformat test struct. https://golang.org/cl/67270 wasn't `go fmt`ed correctly, according to the current `go fmt`. However, what `go fmt` did looked odd, so this change tweaks the test to use a more standard layout. Whitespace-only; no semantic change. Change-Id: Id820352e7c9e68189ee485c8a9bfece75ca4f9cb Reviewed-on: https://go-review.googlesource.com/69031 Run-TryBot: Adam Langley Reviewed-by: Martin Kreichgauer Reviewed-by: Adam Langley --- src/crypto/x509/x509_test.go | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/crypto/x509/x509_test.go b/src/crypto/x509/x509_test.go index 008dca35fa..100c8bebfc 100644 --- a/src/crypto/x509/x509_test.go +++ b/src/crypto/x509/x509_test.go @@ -1544,19 +1544,21 @@ func TestRDNSequenceString(t *testing.T) { seq pkix.RDNSequence want string }{ - {seq: pkix.RDNSequence{ - pkix.RelativeDistinguishedNameSET{ - pkix.AttributeTypeAndValue{Type: oidCountry, Value: "US"}, - }, - pkix.RelativeDistinguishedNameSET{ - pkix.AttributeTypeAndValue{Type: oidOrganization, Value: "Widget Inc."}, - }, - pkix.RelativeDistinguishedNameSET{ - pkix.AttributeTypeAndValue{Type: oidOrganizationalUnit, Value: "Sales"}, - pkix.AttributeTypeAndValue{Type: oidCommonName, Value: "J. Smith"}, + { + seq: pkix.RDNSequence{ + pkix.RelativeDistinguishedNameSET{ + pkix.AttributeTypeAndValue{Type: oidCountry, Value: "US"}, + }, + pkix.RelativeDistinguishedNameSET{ + pkix.AttributeTypeAndValue{Type: oidOrganization, Value: "Widget Inc."}, + }, + pkix.RelativeDistinguishedNameSET{ + pkix.AttributeTypeAndValue{Type: oidOrganizationalUnit, Value: "Sales"}, + pkix.AttributeTypeAndValue{Type: oidCommonName, Value: "J. Smith"}, + }, }, + want: "OU=Sales+CN=J. Smith,O=Widget Inc.,C=US", }, - want: "OU=Sales+CN=J. Smith,O=Widget Inc.,C=US"}, } for i, test := range tests { -- 2.48.1