diff --git a/app/views/new_user/dossiers/index.html.haml b/app/views/new_user/dossiers/index.html.haml index 3760e8bb0..dcd145289 100644 --- a/app/views/new_user/dossiers/index.html.haml +++ b/app/views/new_user/dossiers/index.html.haml @@ -56,7 +56,7 @@ - if current_user.feedbacks.empty? || current_user.feedbacks.last.created_at < 1.month.ago #user-satisfaction - %h3 Que pensez-vous de ce service ? + %h3 Que pensez-vous de la facilité d'utilisation de ce service ? .icons = link_to feedback_path(mark: 0), data: { remote: true, method: :post } do %span.icon.frown diff --git a/spec/views/new_user/dossiers/index.html.haml_spec.rb b/spec/views/new_user/dossiers/index.html.haml_spec.rb index 9ee653464..3ba7f6882 100644 --- a/spec/views/new_user/dossiers/index.html.haml_spec.rb +++ b/spec/views/new_user/dossiers/index.html.haml_spec.rb @@ -74,7 +74,7 @@ describe 'new_user/dossiers/index.html.haml', type: :view do context "quand le user n'a aucun feedback" do it "affiche le formulaire de satisfaction" do - expect(rendered).to have_selector('#user-satisfaction', text: 'Que pensez-vous de ce service ?') + expect(rendered).to have_selector('#user-satisfaction', text: 'Que pensez-vous de la facilité d\'utilisation de ce service ?') end end