6407 - Fix flash message typo in new administrateur/groupe instructeurs controller and its related spec

This commit is contained in:
Ismael MOUSSA S. (T0194673) 2021-08-20 20:03:24 +02:00
parent ddbe2fa8ab
commit 330333aac4
2 changed files with 2 additions and 2 deletions

View file

@ -180,7 +180,7 @@ module NewAdministrateur
redirect_to admin_procedure_groupe_instructeurs_path(procedure)
elsif group_csv_file.size > CSV_MAX_SIZE
flash[:alert] = "Importation impossible : la poids du fichier est supérieur à #{number_to_human_size(CSV_MAX_SIZE)}"
flash[:alert] = "Importation impossible : le poids du fichier est supérieur à #{number_to_human_size(CSV_MAX_SIZE)}"
redirect_to admin_procedure_groupe_instructeurs_path(procedure)
else

View file

@ -400,7 +400,7 @@ describe NewAdministrateur::GroupeInstructeursController, type: :controller do
end
it { expect(flash.alert).to be_present }
it { expect(flash.alert).to eq("Importation impossible : la poids du fichier est supérieur à 1 Mo") }
it { expect(flash.alert).to eq("Importation impossible : le poids du fichier est supérieur à 1 Mo") }
end
context 'when the file content type is not accepted' do