Commit 8ab63783 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'fix-flakey-epic-issues-spec' into 'master'

Fix flakey ordering of issues in epic issues spec

See merge request gitlab-org/gitlab!76319
parents c05ea6c3 b4df6304
...@@ -71,7 +71,7 @@ RSpec.describe 'Getting issues for an epic' do ...@@ -71,7 +71,7 @@ RSpec.describe 'Getting issues for an epic' do
post_graphql(epic_query(iid: epic.iid), current_user: user) post_graphql(epic_query(iid: epic.iid), current_user: user)
expect(response).to have_gitlab_http_status(:success) expect(response).to have_gitlab_http_status(:success)
expect(issue_ids[epic.iid]).to eq [issue.to_global_id.to_s, confidential_issue.to_global_id.to_s] expect(issue_ids[epic.iid]).to match_array [issue.to_global_id.to_s, confidential_issue.to_global_id.to_s]
end end
context 'pagination' do context 'pagination' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment