Skip to content

Commit

Permalink
fix lint misspell
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey1s committed Jul 24, 2019
1 parent 6ff62b6 commit 3b0e44f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ linters:
- lll
- gochecknoglobals
- gochecknoinits
- misspell
- gocyclo
- scopelint
- prealloc
Expand Down
2 changes: 1 addition & 1 deletion codegen/testserver/middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func TestMiddleware(t *testing.T) {

err := c.Post(`query { user(id: 1) { id, friends { id } } }`, &resp)

// First resovles user which is a method
// First resolves user which is a method
// Next resolves id which is not a method
// Finally resolves friends which is a method
assert.Equal(t, []bool{true, false, true}, areMethods)
Expand Down

0 comments on commit 3b0e44f

Please sign in to comment.