diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-12 12:15:35 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-12 12:15:35 +0200 |
commit | 887494761ee41e8e647753e597fab534ed738058 (patch) | |
tree | 7861f2d6d59ac85c5669841b4d26e5ac788fdace /spec/requests | |
parent | 914cfbd2f154ed3154a7dc3cee3309713eea786f (diff) | |
download | gitlab-ce-887494761ee41e8e647753e597fab534ed738058.tar.gz |
Fix commit status POST URL
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/api/commit_status_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/requests/api/commit_status_spec.rb b/spec/requests/api/commit_status_spec.rb index d1dc97e1846..b9e6dfc15a7 100644 --- a/spec/requests/api/commit_status_spec.rb +++ b/spec/requests/api/commit_status_spec.rb @@ -72,8 +72,8 @@ describe API::API, api: true do end end - describe 'POST /projects/:id/repository/commits/:sha/status' do - let(:post_url) { "/projects/#{project.id}/repository/commits/#{commit.id}/status" } + describe 'POST /projects/:id/statuses/:sha' do + let(:post_url) { "/projects/#{project.id}/statuses/#{commit.id}" } context 'reporter user' do context 'should create commit status' do @@ -112,7 +112,7 @@ describe API::API, api: true do end it 'invalid commit' do - post api("/projects/#{project.id}/repository/commits/invalid_sha/status", user), state: 'running' + post api("/projects/#{project.id}/statuses/invalid_sha", user), state: 'running' expect(response.status).to eq(404) end end |