Revert "Bump development gems"

This reverts commit d6ad3fc3fd.
This commit is contained in:
gregoirenovel 2018-03-06 15:11:26 +01:00
parent cea424295f
commit fe7f8da636
42 changed files with 94 additions and 99 deletions

View file

@ -163,12 +163,12 @@ describe AttestationTemplate, type: :model do
dossier.champs
.select { |champ| champ.libelle == 'libelleA' }
.first
.update(value: 'libelle1')
.update_attributes(value: 'libelle1')
dossier.champs
.select { |champ| champ.libelle == 'libelleB' }
.first
.update(value: 'libelle2')
.update_attributes(value: 'libelle2')
end
it { expect(view_args[:title]).to eq('title libelle1') }