diff options
author | Ash McKenzie <amckenzie@gitlab.com> | 2020-04-03 16:22:53 +1100 |
---|---|---|
committer | Ash McKenzie <amckenzie@gitlab.com> | 2020-04-17 16:23:33 +1000 |
commit | 76f528fbd3c87434e7ca9873f1840682eee72095 (patch) | |
tree | 4014eecf865143567de7fbc3d53d6ae3fee2cd5d /internal/gitlabnet/accessverifier/client_test.go | |
parent | 1e3d7b6d51c119d34df5a19be4490e4662829128 (diff) | |
download | gitlab-shell-76f528fbd3c87434e7ca9873f1840682eee72095.tar.gz |
Rename allowed payload JSON for accuracy
Diffstat (limited to 'internal/gitlabnet/accessverifier/client_test.go')
-rw-r--r-- | internal/gitlabnet/accessverifier/client_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gitlabnet/accessverifier/client_test.go b/internal/gitlabnet/accessverifier/client_test.go index 0b6c7b0..451b6b3 100644 --- a/internal/gitlabnet/accessverifier/client_test.go +++ b/internal/gitlabnet/accessverifier/client_test.go @@ -150,7 +150,7 @@ func setup(t *testing.T) (*Client, func()) { body, err := ioutil.ReadFile(path.Join(testhelper.TestRoot, "responses/allowed.json")) require.NoError(t, err) - allowedWithPayloadPath := path.Join(testhelper.TestRoot, "responses/allowed_with_payload.json") + allowedWithPayloadPath := path.Join(testhelper.TestRoot, "responses/allowed_with_push_payload.json") bodyWithPayload, err := ioutil.ReadFile(allowedWithPayloadPath) require.NoError(t, err) |