Skip to content

Commit

Permalink
added missing argument to test
Browse files Browse the repository at this point in the history
  • Loading branch information
milolav committed Jul 28, 2020
1 parent 09642fb commit 77de8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func TestStaticParams(t *testing.T) {
b := &bytes.Buffer{}
log.SetOutput(b)

_, err = handleHook(spHook, "test", &spHeaders, &map[string]interface{}{}, &map[string]interface{}{}, &[]byte{})
_, err = handleHook(spHook, "test", &spHeaders, &map[string]interface{}{}, &map[string]interface{}{}, &[]byte{}, nil)
if err != nil {
t.Fatalf("Unexpected error: %v\n", err)
}
Expand Down

0 comments on commit 77de8e8

Please sign in to comment.