specs: fix test failing because of unspecified types_de_champ order
This commit is contained in:
parent
fd274a8a14
commit
3e1ba4eebc
1 changed files with 5 additions and 5 deletions
|
@ -3,11 +3,11 @@ require 'spec_helper'
|
|||
describe Champs::CheckboxChamp do
|
||||
let(:types_de_champ) do
|
||||
[
|
||||
create(:type_de_champ_header_section),
|
||||
create(:type_de_champ_civilite),
|
||||
create(:type_de_champ_text),
|
||||
create(:type_de_champ_header_section),
|
||||
create(:type_de_champ_email)
|
||||
create(:type_de_champ_header_section, order_place: 1),
|
||||
create(:type_de_champ_civilite, order_place: 2),
|
||||
create(:type_de_champ_text, order_place: 3),
|
||||
create(:type_de_champ_header_section, order_place: 4),
|
||||
create(:type_de_champ_email, order_place: 5)
|
||||
]
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue