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

@ -122,7 +122,7 @@ describe NewUser::DossiersController, type: :controller do
end
context 'when the dossier is for an personne physique' do
before { dossier.procedure.update(for_individual: true) }
before { dossier.procedure.update_attributes(for_individual: true) }
it { is_expected.to redirect_to(identite_dossier_path(dossier)) }
end
@ -215,7 +215,7 @@ describe NewUser::DossiersController, type: :controller do
let(:value) { nil }
before do
first_champ.type_de_champ.update(mandatory: true, libelle: 'l')
first_champ.type_de_champ.update_attributes(mandatory: true, libelle: 'l')
allow(PiecesJustificativesService).to receive(:missing_pj_error_messages).and_return(['pj'])
subject