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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-17 09:08:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-17 09:08:14 +0300
commitdbe50edd3856c3f02578301bc423340f0995d944 (patch)
tree5500a6f674faff61a3423ca3fb7955ccb94770c3
parentfc30a001dafdf318778572b2848002f50882dd73 (diff)
Add latest changes from gitlab-org/gitlab@master
-rw-r--r--spec/requests/api/groups_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/api/groups_spec.rb b/spec/requests/api/groups_spec.rb
index 82d700c2326..18feff85482 100644
--- a/spec/requests/api/groups_spec.rb
+++ b/spec/requests/api/groups_spec.rb
@@ -341,7 +341,7 @@ describe API::Groups do
expect(response).to have_gitlab_http_status(:ok)
expect(response).to include_pagination_headers
expect(json_response).to be_an Array
- expect(response_groups).to eq([group2.id, group3.id])
+ expect(response_groups).to contain_exactly(group2.id, group3.id)
end
end
end