Skip to content

Commit

Permalink
chore: update deps (#92)
Browse files Browse the repository at this point in the history
Signed-off-by: Tronje Krop <[email protected]>
  • Loading branch information
Tronje Krop committed Oct 7, 2024
1 parent b05baaf commit d7fff5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export GOPATH ?= $(shell $(GO) env GOPATH)
export GOBIN ?= $(GOPATH)/bin

# Setup go-make version to use desired build and config scripts.
GOMAKE_DEP ?= github.com/tkrop/[email protected].104
GOMAKE_DEP ?= github.com/tkrop/[email protected].105
INSTALL_FLAGS ?= -mod=readonly -buildvcs=auto
# Request targets from go-make targets target.
TARGETS := $(shell command -v $(GOBIN)/go-make >/dev/null || \
Expand Down
2 changes: 1 addition & 1 deletion mock/mocks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ var testMockParams = map[string]MockParams{

func TestMocks(t *testing.T) {
test.Map(t, testMockParams).
RunSeq(func(t test.Test, param MockParams) {
Run(func(t test.Test, param MockParams) {
// Given
mocks := mock.NewMocks(t)

Expand Down
2 changes: 1 addition & 1 deletion perm/perm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var testPermTestParams = perm.ExpectMap{

func TestPermTest(t *testing.T) {
test.Map(t, testPermTestParams.Remain(test.Failure)).
RunSeq(func(t test.Test, expect test.Expect) {
Run(func(t test.Test, expect test.Expect) {
// Given
name := strings.Split(t.Name(), "/")[1]
perm := strings.Split(name, "-")
Expand Down
2 changes: 1 addition & 1 deletion test/reflect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ func TestFind(t *testing.T) {
test.Map(t, testFindParams).
// TODO: advance find to support basic structs.
Filter("^struct", false).
RunSeq(func(t test.Test, param testFindParam) {
Run(func(t test.Test, param testFindParam) {
// When
expect := test.Find(param.param, param.deflt, param.names...)

Expand Down

0 comments on commit d7fff5b

Please sign in to comment.