summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortiagonbotelho <tiagonbotelho@hotmail.com>2016-07-11 18:42:23 +0100
committertiagonbotelho <tiagonbotelho@hotmail.com>2016-07-11 18:42:23 +0100
commita5cf953deda76398715abe2654530d0dea9f6a3a (patch)
treea643b838c16fd216c15487cf70c1efb13be2464a
parentd85dde198b309ab62847d1f58d9373cb3509d4aa (diff)
downloadgitlab-ce-a5cf953deda76398715abe2654530d0dea9f6a3a.tar.gz
moves let variable to it statement by using a local variable
-rw-r--r--spec/requests/api/projects_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/requests/api/projects_spec.rb b/spec/requests/api/projects_spec.rb
index 6176ef69d7b..6ded6b40178 100644
--- a/spec/requests/api/projects_spec.rb
+++ b/spec/requests/api/projects_spec.rb
@@ -82,12 +82,12 @@ describe API::API, api: true do
end
context 'GET /projects?simple=true' do
- let(:keys) { ["id", "http_url_to_repo", "web_url", "name", "name_with_namespace", "path", "path_with_namespace", "permissions"] }
it 'should return a simplified version of all the projects' do
+ expected_keys = ["id", "http_url_to_repo", "web_url", "name", "name_with_namespace", "path", "path_with_namespace", "permissions"]
get api('/projects?simple=true', user)
expect(response).to have_http_status(200)
expect(json_response).to be_an Array
- expect(json_response.first.keys).to match_array keys
+ expect(json_response.first.keys).to match_array expected_keys
end
end