summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 23:42:57 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 23:42:57 +0200
commit416d98b497db6e8c8ad46072e17e835da27f23c7 (patch)
treee77d511c8b5a49b336cd8c1261cea9fa533e9410 /spec
parentfb9cb3f06c71abdd797e2cfd3816a09babcf3e98 (diff)
downloadgitlab-ce-416d98b497db6e8c8ad46072e17e835da27f23c7.tar.gz
Fix: models/ci/project_spec.rb once again
Diffstat (limited to 'spec')
-rw-r--r--spec/models/ci/project_spec.rb2
1 files changed, 1 insertions, 1 deletions
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