Fix two typos

This commit is contained in:
Daniel Schädler 2019-06-05 10:53:18 +02:00
parent 9c9a856265
commit 5d47ae5426
1 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ RSpec.describe MatchesController, type: :controller do
end
end
context 'on a undecided match' do
context 'on an undecided match' do
before do
@running_playoff_match.match_scores.each do |ms|
ms.points = 42
@ -121,7 +121,7 @@ RSpec.describe MatchesController, type: :controller do
@running_playoff_match.reload
end
it 'returns unprocessable entity' do
it 'returns an unprocessable entity response' do
expect(response).to have_http_status(:unprocessable_entity)
end