From fadbb0ebffdfa4fc7d27abd8b19031c4a95bd10b Mon Sep 17 00:00:00 2001 From: Koichi TANAKA Date: Wed, 3 Dec 2014 18:18:42 +0900 Subject: [PATCH] More readable --- spec/features/setting_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/features/setting_spec.rb b/spec/features/setting_spec.rb index 71c12b9..34ab0ed 100644 --- a/spec/features/setting_spec.rb +++ b/spec/features/setting_spec.rb @@ -23,11 +23,11 @@ describe 'setting', stub: :daemon do page.should have_css('h1', text: I18n.t('fluentd.settings.edit.page_title')) page.should have_css('p.text-danger', text: I18n.t('terms.notice_restart_for_config_edit', brand: 'fluentd')) - fill_in 'config', with: 'SUPER GREAT CONFIG HERE' + fill_in 'config', with: 'YET ANOTHER CONFIG' click_button I18n.t('terms.update') current_path.should == '/daemon/setting' - page.should have_css('pre', text: 'SUPER GREAT CONFIG HERE') + page.should have_css('pre', text: 'YET ANOTHER CONFIG') end end