summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@gitlab.com>2014-11-05 17:42:52 +0000
committerDmitriy Zaporozhets <dzaporozhets@gitlab.com>2014-11-05 17:42:52 +0000
commit6d60762793f79bfb07cc15e78ef6cc53dca6be48 (patch)
tree164c02397e1f8e99e782c1dc0322896275a6e5c0 /spec
parentc3e83d4771071b1e63ebcc88be624296ce72499a (diff)
parent4a41d4b7d246c4e5f9a9062c7dd417510b0bae0c (diff)
downloadgitlab-ce-6d60762793f79bfb07cc15e78ef6cc53dca6be48.tar.gz
Merge branch 'gitlab-ci-parallel' into 'master'
Update GitLab CI service to work with new GitLab CI See merge request !1239
Diffstat (limited to 'spec')
-rw-r--r--spec/models/gitlab_ci_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/gitlab_ci_service_spec.rb b/spec/models/gitlab_ci_service_spec.rb
index ebc377047be..83277058fbb 100644
--- a/spec/models/gitlab_ci_service_spec.rb
+++ b/spec/models/gitlab_ci_service_spec.rb
@@ -34,11 +34,11 @@ describe GitlabCiService do
end
describe :commit_status_path do
- it { @service.commit_status_path("2ab7834c").should == "http://ci.gitlab.org/projects/2/builds/2ab7834c/status.json?token=verySecret"}
+ it { @service.commit_status_path("2ab7834c").should == "http://ci.gitlab.org/projects/2/commits/2ab7834c/status.json?token=verySecret"}
end
describe :build_page do
- it { @service.build_page("2ab7834c").should == "http://ci.gitlab.org/projects/2/builds/2ab7834c"}
+ it { @service.build_page("2ab7834c").should == "http://ci.gitlab.org/projects/2/commits/2ab7834c"}
end
end
end