Fix: models/ci/project_spec.rb once again

This commit is contained in:
Kamil Trzcinski 2015-09-15 23:42:57 +02:00
parent fb9cb3f06c
commit 416d98b497

View file

@ -132,7 +132,7 @@ describe Ci::Project do
it { is_expected.to be_kind_of(Ci::Project) } it { is_expected.to be_kind_of(Ci::Project) }
it { expect(subject.name).to eq(project.name_with_namespace) } it { expect(subject.name).to eq(project.name_with_namespace) }
it { expect(subject.gitlab_id).to eq(project.id) } 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 end
describe :repo_url_with_auth do describe :repo_url_with_auth do