From f9a9ce635ccf10c390f7150ace7f3b23d4861cfb Mon Sep 17 00:00:00 2001 From: Malaber <32635600+Malaber@users.noreply.github.com> Date: Wed, 5 Jun 2019 00:07:54 +0200 Subject: [PATCH] fixup b94bb9cdcd244d658e7952ebf5096108011cded7 --- spec/models/match_score_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/models/match_score_spec.rb b/spec/models/match_score_spec.rb index bff5d5a..343cecd 100644 --- a/spec/models/match_score_spec.rb +++ b/spec/models/match_score_spec.rb @@ -10,11 +10,11 @@ RSpec.describe MatchScore, type: :model do describe '#part_of_group_match?' do it 'is part of a group match' do - expect(create(:running_group_match).match_scores.first.part_of_group_match?).to be(true) + expect(create(:running_group_match).match_scores.first.part_of_group_match?).to eq(true) end it 'isn\'t part of a group match' do - expect(create(:running_playoff_match).match_scores.first.part_of_group_match?).to be(false) + expect(create(:running_playoff_match).match_scores.first.part_of_group_match?).to eq(false) end end end