summaryrefslogtreecommitdiff
path: root/spec/services/test_hook_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/test_hook_service_spec.rb')
-rw-r--r--spec/services/test_hook_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/test_hook_service_spec.rb b/spec/services/test_hook_service_spec.rb
index 4f47e89b4b5..4f6dd8c6d3f 100644
--- a/spec/services/test_hook_service_spec.rb
+++ b/spec/services/test_hook_service_spec.rb
@@ -6,7 +6,7 @@ describe TestHookService, services: true do
let(:hook) { create :project_hook, project: project }
describe '#execute' do
- it "should execute successfully" do
+ it "executes successfully" do
stub_request(:post, hook.url).to_return(status: 200)
expect(TestHookService.new.execute(hook, user)).to be_truthy
end