diff --git a/spec/controllers/matches_controller_spec.rb b/spec/controllers/matches_controller_spec.rb index 579f341..d36e9ba 100644 --- a/spec/controllers/matches_controller_spec.rb +++ b/spec/controllers/matches_controller_spec.rb @@ -3,7 +3,7 @@ require 'rails_helper' def test_get_index_with_filter(filter_state) - get :index, params: {state: filter_state, tournament_id: @tournament.to_param} + get :index, params: { state: filter_state, tournament_id: @tournament.to_param } deserialize_response(response).each do |match| expect(match[:state]).to eq(filter_state) end