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/app
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
parent4e7df0037a45f4d2b05ef1a582cb1bbef44afd10 (diff)
Fix test hook and tests
Diffstat (limited to 'app')
-rw-r--r--app/controllers/projects/services_controller.rb2
-rw-r--r--app/services/test_hook_service.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/projects/services_controller.rb b/app/controllers/projects/services_controller.rb
index 9c203debc3f..b2ce99aeb45 100644
--- a/app/controllers/projects/services_controller.rb
+++ b/app/controllers/projects/services_controller.rb
@@ -24,7 +24,7 @@ class Projects::ServicesController < Projects::ApplicationController
end
def test
- data = Gitlab::PushDataBuilder.build(project, current_user)
+ data = Gitlab::PushDataBuilder.build_sample(project, current_user)
@service.execute(data)
redirect_to :back
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