diff --git a/spec/models/ci/project_spec.rb b/spec/models/ci/project_spec.rb index 7c0fbbd60bb28ac1e8aa0ad5ac77b3135eb0d774..f24a77d08ff07990dd603d8cdc0bc6da9e077e6b 100644 --- a/spec/models/ci/project_spec.rb +++ b/spec/models/ci/project_spec.rb @@ -131,8 +131,8 @@ describe Ci::Project do it { is_expected.to be_valid } 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(4) } - it { expect(subject.gitlab_url).to eq("http://localhost/namespace5/gitlabhq") } + it { expect(subject.gitlab_id).to eq(project.id) } + it { expect(subject.gitlab_url).to eq(project.path_with_namespace) } end describe :repo_url_with_auth do