Skip to content

Commit 08a2e01

Browse files
committed
Fix intagration tests and linter issues
1 parent 00da0d3 commit 08a2e01

File tree

7 files changed

+71
-643
lines changed

7 files changed

+71
-643
lines changed

docs/static/openapi.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -9297,17 +9297,17 @@ paths:
92979297
type: string
92989298
tags:
92999299
- Query
9300-
/dcl/pki/noc-certificates:
9300+
/dcl/pki/noc-ica-certificates:
93019301
get:
9302-
summary: Queries a list of NocCertificates items.
9303-
operationId: NocCertificatesAll
9302+
summary: Queries a list of NocIcaCertificates items.
9303+
operationId: NocIcaCertificatesAll
93049304
responses:
93059305
'200':
93069306
description: A successful response.
93079307
schema:
93089308
type: object
93099309
properties:
9310-
nocCertificates:
9310+
nocIcaCertificates:
93119311
type: array
93129312
items:
93139313
type: object
@@ -9482,17 +9482,17 @@ paths:
94829482
type: boolean
94839483
tags:
94849484
- Query
9485-
/dcl/pki/noc-certificates/{vid}:
9485+
/dcl/pki/noc-ica-certificates/{vid}:
94869486
get:
9487-
summary: Queries a NocCertificates by index.
9488-
operationId: NocCertificates
9487+
summary: Queries a NocIcaCertificates by index.
9488+
operationId: NocIcaCertificates
94899489
responses:
94909490
'200':
94919491
description: A successful response.
94929492
schema:
94939493
type: object
94949494
properties:
9495-
nocCertificates:
9495+
nocIcaCertificates:
94969496
type: object
94979497
properties:
94989498
vid:
@@ -21678,7 +21678,7 @@ definitions:
2167821678
format: int64
2167921679
info:
2168021680
type: string
21681-
zigbeealliance.distributedcomplianceledger.pki.NocCertificates:
21681+
zigbeealliance.distributedcomplianceledger.pki.NocIcaCertificates:
2168221682
type: object
2168321683
properties:
2168421684
vid:
@@ -22056,10 +22056,10 @@ definitions:
2205622056
repeated Bar results = 1;
2205722057
PageResponse page = 2;
2205822058
}
22059-
zigbeealliance.distributedcomplianceledger.pki.QueryAllNocCertificatesResponse:
22059+
zigbeealliance.distributedcomplianceledger.pki.QueryAllNocIcaCertificatesResponse:
2206022060
type: object
2206122061
properties:
22062-
nocCertificates:
22062+
nocIcaCertificates:
2206322063
type: array
2206422064
items:
2206522065
type: object
@@ -22857,10 +22857,10 @@ definitions:
2285722857
type: string
2285822858
subjectKeyId:
2285922859
type: string
22860-
zigbeealliance.distributedcomplianceledger.pki.QueryGetNocCertificatesResponse:
22860+
zigbeealliance.distributedcomplianceledger.pki.QueryGetNocIcaCertificatesResponse:
2286122861
type: object
2286222862
properties:
22863-
nocCertificates:
22863+
nocIcaCertificates:
2286422864
type: object
2286522865
properties:
2286622866
vid:

go.mod

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/go-playground/universal-translator v0.18.0
1111
github.com/go-playground/validator/v10 v10.9.0
1212
github.com/gogo/protobuf v1.3.3
13-
github.com/golang/protobuf v1.5.4
13+
github.com/golang/protobuf v1.5.3
1414
github.com/gorilla/mux v1.8.0
1515
github.com/grpc-ecosystem/grpc-gateway v1.16.0
1616
github.com/kr/pretty v0.3.1 // indirect
@@ -19,14 +19,14 @@ require (
1919
github.com/spf13/cobra v1.2.1
2020
github.com/spf13/pflag v1.0.5
2121
github.com/spf13/viper v1.8.1
22-
github.com/stretchr/testify v1.8.4
22+
github.com/stretchr/testify v1.8.2
2323
github.com/tendermint/spm v0.1.9
2424
github.com/tendermint/tendermint v0.34.14
2525
github.com/tendermint/tm-db v0.6.4
26-
golang.org/x/net v0.20.0 // indirect
27-
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe
28-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
29-
google.golang.org/grpc v1.61.0
26+
golang.org/x/net v0.12.0 // indirect
27+
google.golang.org/genproto/googleapis/api v0.0.0-20230724170836-66ad5b6ff146
28+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230724170836-66ad5b6ff146 // indirect
29+
google.golang.org/grpc v1.56.2
3030
sigs.k8s.io/yaml v1.3.0
3131
)
3232

0 commit comments

Comments
 (0)