Skip to content

Commit 046643e

Browse files
committed
chore: update deps (#132)
Signed-off-by: Tronje Krop <[email protected]>
1 parent f4013b9 commit 046643e

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ TMPDIR ?= /tmp
1818
# Setup default go-make installation flags.
1919
INSTALL_FLAGS ?= -mod=readonly -buildvcs=auto
2020
# Setup go-make version to use desired build and config scripts.
21-
GOMAKE_DEP ?= github.com/tkrop/[email protected].159
21+
GOMAKE_DEP ?= github.com/tkrop/[email protected].160
2222
# Request targets from go-make show-targets target.
2323
TARGETS := $(shell command -v $(GOBIN)/go-make >/dev/null || \
2424
$(GO) install $(INSTALL_FLAGS) $(GOMAKE_DEP) >&2 && \

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/stretchr/testify v1.11.1
1111
go.uber.org/mock v0.6.0
1212
golang.org/x/text v0.30.0
13-
golang.org/x/tools v0.38.0
13+
golang.org/x/tools v0.39.0
1414
)
1515

1616
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ golang.org/x/sync v0.18.0 h1:kr88TuHDroi+UVf+0hZnirlk8o8T+4MrK6mr60WkH/I=
3434
golang.org/x/sync v0.18.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
3535
golang.org/x/text v0.30.0 h1:yznKA/E9zq54KzlzBEAWn1NXSQ8DIp/NYMy88xJjl4k=
3636
golang.org/x/text v0.30.0/go.mod h1:yDdHFIX9t+tORqspjENWgzaCVXgk0yYnYuSZ8UzzBVM=
37-
golang.org/x/tools v0.38.0 h1:Hx2Xv8hISq8Lm16jvBZ2VQf+RLmbd7wVUsALibYI/IQ=
38-
golang.org/x/tools v0.38.0/go.mod h1:yEsQ/d/YK8cjh0L6rZlY8tgtlKiBNTL14pGDJPJpYQs=
37+
golang.org/x/tools v0.39.0 h1:ik4ho21kwuQln40uelmciQPp9SipgNDdrafrYA4TmQQ=
38+
golang.org/x/tools v0.39.0/go.mod h1:JnefbkDPyD8UU2kI5fuf8ZX4/yUeh9W877ZeBONxUqQ=
3939
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4040
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
4141
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

test/runner.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,8 @@ func (r *factory[P]) exec(
297297
return
298298
}
299299

300+
// TODO: Think about how https://pkg.go.dev/testing/synctes can be utilized
301+
// here to better coordinate parallel tests.
300302
r.t.Run(name, r.wrap(param, call, parallel))
301303
}
302304

0 commit comments

Comments
 (0)