Misc. typos (#8694)

Found via `codespell -q 3 --skip="./app/javascript/mastodon/locales,./config/locales"`
This commit is contained in:
luzpaz
2018-09-13 18:53:09 -04:00
committed by Eugen Rochko
parent 4959ead07c
commit 40dd19be37
15 changed files with 18 additions and 18 deletions

View File

@ -6,11 +6,11 @@ describe EmojisController do
let(:emoji) { Fabricate(:custom_emoji) }
describe 'GET #show' do
subject(:responce) { get :show, params: { id: emoji.id, format: :json } }
subject(:response) { get :show, params: { id: emoji.id, format: :json } }
subject(:body) { JSON.parse(response.body, symbolize_names: true) }
it 'returns the right response' do
expect(responce).to have_http_status 200
expect(response).to have_http_status 200
expect(body[:name]).to eq ':coolcat:'
end
end