Commit 46859cb9 authored by Rémy Coutable's avatar Rémy Coutable

Fix a transient spec failure

Sorting by created_at can lead to uncertainties if two records are
created at the same time.
Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent a7a3636d
......@@ -40,7 +40,7 @@ describe 'cycle analytics events' do
expect(json_response['events']).not_to be_empty
first_mr_iid = MergeRequest.order(created_at: :desc).pluck(:iid).first.to_s
first_mr_iid = project.merge_requests.order(id: :desc).pluck(:iid).first.to_s
expect(json_response['events'].first['iid']).to eq(first_mr_iid)
end
......
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