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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-12 20:08:25 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-12 20:08:25 +0300
commitbba8e59a044f34a02000b752a70198fb74236b1d (patch)
treef53504aca367b4b02c6faa4ce3e633a3dfea2899 /app/services/test_hook_service.rb
parent4e7df0037a45f4d2b05ef1a582cb1bbef44afd10 (diff)
Fix test hook and tests
Diffstat (limited to 'app/services/test_hook_service.rb')
-rw-r--r--app/services/test_hook_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/test_hook_service.rb b/app/services/test_hook_service.rb
index 3c03aeaaf66..21ec2c01cb8 100644
--- a/app/services/test_hook_service.rb
+++ b/app/services/test_hook_service.rb
@@ -1,6 +1,6 @@
class TestHookService
def execute(hook, current_user)
- data = Gitlab::PushDataBuilder.build(hook.project, current_user)
+ data = Gitlab::PushDataBuilder.build_sample(hook.project, current_user)
hook.execute(data)
end
end