Skip to content

Commit

Permalink
bump go version in go.mod to 1.19
Browse files Browse the repository at this point in the history
fix planner closer test
  • Loading branch information
devsergiy committed Sep 26, 2023
1 parent 3ca5652 commit 4ca9d9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v2/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wundergraph/graphql-go-tools/v2

go 1.18
go 1.19

require (
github.com/99designs/gqlgen v0.17.22
Expand Down
2 changes: 1 addition & 1 deletion v2/pkg/engine/plan/planner_closer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (f *FakePlanner) EnterDocument(operation, definition *ast.Document) {

}

func (f *FakePlanner) Register(visitor *Visitor, configuration DataSourceConfiguration, isNested bool) error {
func (f *FakePlanner) Register(visitor *Visitor, _ DataSourceConfiguration, _ DataSourcePlannerConfiguration) error {
visitor.Walker.RegisterEnterDocumentVisitor(f)
return nil
}
Expand Down

0 comments on commit 4ca9d9b

Please sign in to comment.