Skip to content
Snippets Groups Projects
Commit bcba8b25 authored by Stan Hu's avatar Stan Hu
Browse files

Merge branch '24341-fix-failure' into 'master'

Remove order-dependent expectation

Fixes #24341, hopefully

See merge request !7385
parents 66cddf34 bf39c4bc
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -18,7 +18,7 @@ describe GroupLabel, models: true do
end
 
describe '#to_reference' do
let(:label) { create(:group_label) }
let(:label) { create(:group_label, title: 'feature') }
 
context 'using id' do
it 'returns a String reference to the object' do
Loading
Loading
Loading
Loading
@@ -15,7 +15,7 @@ describe API::API, api: true do
describe 'GET /projects/:id/labels' do
it 'returns all available labels to the project' do
group = create(:group)
group_label = create(:group_label, group: group)
group_label = create(:group_label, title: 'feature', group: group)
project.update(group: group)
expected_keys = [
'id', 'name', 'color', 'description',
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment