diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-09-14 16:48:33 +0300 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-09-14 16:48:33 +0300 |
commit | 2c4daf1a68a23e6d4f17340b03415cfd715d5afc (patch) | |
tree | c7f937c25d813e628d0305229850c21906589994 /spec/requests | |
parent | 4c53cc0ebac36560d806732ff1fefba9206c75f3 (diff) | |
download | gitlab-ce-2c4daf1a68a23e6d4f17340b03415cfd715d5afc.tar.gz |
fix part of specs
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/ci/builds_spec.rb | 2 | ||||
-rw-r--r-- | spec/requests/ci/commits_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/requests/ci/builds_spec.rb b/spec/requests/ci/builds_spec.rb index 0d7650ef582..998c386ead4 100644 --- a/spec/requests/ci/builds_spec.rb +++ b/spec/requests/ci/builds_spec.rb @@ -9,7 +9,7 @@ describe "Builds" do describe "GET /:project/builds/:id/status.json" do before do - get status_project_build_path(@project, @build), format: :json + get status_ci_project_build_path(@project, @build), format: :json end it { expect(response.status).to eq(200) } diff --git a/spec/requests/ci/commits_spec.rb b/spec/requests/ci/commits_spec.rb index fe7bd2de3e7..fb317670339 100644 --- a/spec/requests/ci/commits_spec.rb +++ b/spec/requests/ci/commits_spec.rb @@ -8,7 +8,7 @@ describe "Commits" do describe "GET /:project/refs/:ref_name/commits/:id/status.json" do before do - get status_project_ref_commit_path(@project, @commit.ref, @commit.sha), format: :json + get status_ci_project_ref_commits_path(@project, @commit.ref, @commit.sha), format: :json end it { expect(response.status).to eq(200) } |