From 416d98b497db6e8c8ad46072e17e835da27f23c7 Mon Sep 17 00:00:00 2001 From: Kamil Trzcinski Date: Tue, 15 Sep 2015 23:42:57 +0200 Subject: [PATCH] Fix: models/ci/project_spec.rb once again --- spec/models/ci/project_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/ci/project_spec.rb b/spec/models/ci/project_spec.rb index f24a77d08ff..1025868da6e 100644 --- a/spec/models/ci/project_spec.rb +++ b/spec/models/ci/project_spec.rb @@ -132,7 +132,7 @@ describe Ci::Project do it { is_expected.to be_kind_of(Ci::Project) } it { expect(subject.name).to eq(project.name_with_namespace) } it { expect(subject.gitlab_id).to eq(project.id) } - it { expect(subject.gitlab_url).to eq(project.path_with_namespace) } + it { expect(subject.gitlab_url).to eq(project.web_url) } end describe :repo_url_with_auth do