Skip to content

Commit

Permalink
Fix toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
emcfarlane committed Nov 6, 2024
1 parent e5aab05 commit 88631c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module connectrpc.com/validate

go 1.21.0

toolchain go1.23.2

require (
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.35.1-20240920164238-5a7b106cbb87.1
connectrpc.com/connect v1.17.0
Expand Down
4 changes: 4 additions & 0 deletions validate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ func TestInterceptorUnary(t *testing.T) {
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
test := test
t.Parallel()

validator, err := validate.NewInterceptor()
Expand Down Expand Up @@ -140,6 +142,7 @@ func TestInterceptorStreamingHandler(t *testing.T) {
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()

Expand Down Expand Up @@ -226,6 +229,7 @@ func TestInterceptorStreamingClient(t *testing.T) {
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()

Expand Down

0 comments on commit 88631c9

Please sign in to comment.