Skip to content

Commit

Permalink
removed memory aliasing issue and copyright-skip: true
Browse files Browse the repository at this point in the history
  • Loading branch information
maurafortino committed Oct 25, 2023
1 parent 5aa8e9d commit eb2719c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ jobs:
ci:
uses: xmidt-org/shared-go/.github/workflows/ci.yml@5bc4b83f25ff4c944cd6253ba189e50d1997ab3c # v4.1.0
with:
copyright-skip: true
release-type: library
secrets: inherit
3 changes: 2 additions & 1 deletion transport_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,8 @@ func TestSetWebhookDefaults(t *testing.T) {
w := webhookValidator{
now: mockNow,
}
w.setWebhookDefaults(&tc.webhook, tc.remoteAddr)
webhook := tc.webhook
w.setWebhookDefaults(&webhook, tc.remoteAddr)
assert.Equal(tc.expectedWebhook, tc.webhook)
})
}
Expand Down

0 comments on commit eb2719c

Please sign in to comment.