diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2022-12-16 00:20:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 16:20:55 +0100 |
commit | baecdf28820b267aebe0c9fa92bdc85d929746e7 (patch) | |
tree | 3254982e63a5b0ccb11046e9fbe1ba5cdf6ad70c /spec/helpers | |
parent | 58200132d07bc0b641c95af614b9ac02ce48c9fc (diff) |
Fix typo in application_helper_spec.rb (#20981)
enviroment -> environment
Diffstat (limited to 'spec/helpers')
-rw-r--r-- | spec/helpers/application_helper_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb index 20ee32aa0..1dbd985bf 100644 --- a/spec/helpers/application_helper_spec.rb +++ b/spec/helpers/application_helper_spec.rb @@ -113,7 +113,7 @@ describe ApplicationHelper do Setting.site_title = site_title end - it 'returns site title on production enviroment' do + it 'returns site title on production environment' do Setting.site_title = 'site title' expect(Rails.env).to receive(:production?).and_return(true) expect(helper.title).to eq 'site title' |