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
path: root/spec
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-12-11 00:00:10 +0400
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-12-11 00:00:10 +0400
commit8918d11379cc29d679de72f230193cd35d722c3e (patch)
tree8d87d8fced9585f1fbb3a36ad49c07187e56bd0a /spec
parenta5243178edec1fde0365006b2aaaf44953181d84 (diff)
Fix project hook spec
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_hooks_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/project_hooks_spec.rb b/spec/models/project_hooks_spec.rb
index 7c8f05b17a3..39a628a9436 100644
--- a/spec/models/project_hooks_spec.rb
+++ b/spec/models/project_hooks_spec.rb
@@ -108,7 +108,7 @@ describe Project, "Hooks" do
it { should include(id: @commit.id) }
it { should include(message: @commit.safe_message) }
it { should include(timestamp: @commit.date.xmlschema) }
- it { should include(url: "#{Gitlab.config.url}/#{project.code}/commits/#{@commit.id}") }
+ it { should include(url: "#{Gitlab.config.url}/#{project.code}/commit/#{@commit.id}") }
context "with a author" do
subject { @data[:commits].first[:author] }