Merge pull request #6409 from ismo1/6407-fix_a_typo

#6407 - Fix flash message typo in new_administrateur/groupe_instructeurs_controller and its related spec
This commit is contained in:
Paul Chavard 2021-08-24 08:39:53 +01:00 committed by GitHub
commit 3b93336c20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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