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>2018-03-05 19:25:52 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-03-05 19:25:52 +0300
commit9fb733c3234318d31be09543fd788a75717db12d (patch)
treebbfaeb88833c696772d3f9027f8c3c0f7efe7f0b /spec/controllers
parentf53cf3c486fbf7bf66b7207ff0d92f23aceb8a71 (diff)
Revert few more broken specs related to *_with_namespace methods
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/autocomplete_controller_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/autocomplete_controller_spec.rb b/spec/controllers/autocomplete_controller_spec.rb
index d12cd83ac4a..fb6d82d7de3 100644
--- a/spec/controllers/autocomplete_controller_spec.rb
+++ b/spec/controllers/autocomplete_controller_spec.rb
@@ -246,7 +246,7 @@ describe AutocompleteController do
expect(json_response.size).to eq(1)
expect(json_response.first['id']).to eq authorized_project.id
- expect(json_response.first['full_name']).to eq authorized_project.full_name
+ expect(json_response.first['name_with_namespace']).to eq authorized_project.full_name
end
end
end
@@ -267,7 +267,7 @@ describe AutocompleteController do
expect(json_response.size).to eq(1)
expect(json_response.first['id']).to eq authorized_search_project.id
- expect(json_response.first['full_name']).to eq authorized_search_project.full_name
+ expect(json_response.first['name_with_namespace']).to eq authorized_search_project.full_name
end
end
end