Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-16 00:42:57 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-16 00:42:57 +0300
commit416d98b497db6e8c8ad46072e17e835da27f23c7 (patch)
treee77d511c8b5a49b336cd8c1261cea9fa533e9410 /spec/models
parentfb9cb3f06c71abdd797e2cfd3816a09babcf3e98 (diff)
Fix: models/ci/project_spec.rb once again
Diffstat (limited to 'spec/models')
-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