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:
authorJarka Kadlecova <jarka@gitlab.com>2017-05-29 12:29:43 +0300
committerJarka Kadlecova <jarka@gitlab.com>2017-06-01 08:47:15 +0300
commit6fad5640e73837ba148b0ed005205adff91d8a4e (patch)
treee30f52bb72741da710b3bd2c1e45540bd8943fd3 /spec/controllers
parentb71025c014babf9663e0451ad21eabde91570259 (diff)
fix failing specs
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/projects/services_controller_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/projects/services_controller_spec.rb b/spec/controllers/projects/services_controller_spec.rb
index 7aa2492edf6..4fe1e848965 100644
--- a/spec/controllers/projects/services_controller_spec.rb
+++ b/spec/controllers/projects/services_controller_spec.rb
@@ -64,14 +64,14 @@ describe Projects::ServicesController do
end
context 'failure' do
- it 'returns 500 status code and the error message' do
+ it 'returns success status code and the error message' do
expect(HipChat::Client).to receive(:new).with('hipchat_token_p', anything).and_raise('Bad test')
put :test, namespace_id: project.namespace.id, project_id: project.id, id: service.id, service: service_params
expect(response.status).to eq(200)
expect(JSON.parse(response.body)).
- to eq('error' => true, 'message' => 'Test failed', 'service_response' => 'Bad test')
+ to eq('error' => true, 'message' => 'Test failed.', 'service_response' => 'Bad test')
end
end
end