1
0
Fork 1
forked from fedi/mastodon

Fix typo in application_helper_spec.rb (#20981)

enviroment -> environment
This commit is contained in:
Ikko Ashimine 2022-12-16 00:20:55 +09:00 committed by talon
parent b6706fbe52
commit 713f3c9f79

View file

@ -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'