Skip to content

Commit eef5bc4

Browse files
committed
Fix goimports alignment in CBOR struct tags
1 parent 3cf685b commit eef5bc4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • pkg/teeattestation/nitro/fake

pkg/teeattestation/nitro/fake/fake.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,15 @@ type coseHeader struct {
206206
}
207207

208208
type cosePayload struct {
209-
_ struct{} `cbor:",toarray"` //nolint:revive // idiomatic CBOR array encoding
209+
_ struct{} `cbor:",toarray"` //nolint:revive // idiomatic CBOR array encoding
210210
Protected []byte
211211
Unprotected cbor.RawMessage
212212
Payload []byte
213213
Signature []byte
214214
}
215215

216216
type coseSignature struct {
217-
_ struct{} `cbor:",toarray"` //nolint:revive // idiomatic CBOR array encoding
217+
_ struct{} `cbor:",toarray"` //nolint:revive // idiomatic CBOR array encoding
218218
Context string
219219
Protected []byte
220220
ExternalAAD []byte

0 commit comments

Comments
 (0)