6407 - Fix flash message typo in new administrateur/groupe instructeurs controller and its related spec
This commit is contained in:
parent
ddbe2fa8ab
commit
330333aac4
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue