Skip to content

Commit

Permalink
Fix bad test case
Browse files Browse the repository at this point in the history
  • Loading branch information
wilhelmeek committed Mar 6, 2021
1 parent 635b1ae commit 469e31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/testserver/nulls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func TestNullBubbling(t *testing.T) {
}
err := c.Post(`query { valid, errorBubbleList { id } }`, &resp)

require.EqualError(t, err, `[{"message":"must not be null","path":["errorBubbleList", 0]}]`)
require.EqualError(t, err, `[{"message":"must not be null","path":["errorBubbleList",0]}]`)
require.Nil(t, resp.ErrorBubbleList)
require.Equal(t, "Ok", resp.Valid)
})
Expand Down

0 comments on commit 469e31b

Please sign in to comment.