From c180110c8015ad344937f171445fa9bbc670732e Mon Sep 17 00:00:00 2001 From: arturplaczek Date: Wed, 13 Apr 2022 15:24:27 +0200 Subject: [PATCH] fix: test coverage --- test/game/bloc/start_game_event_test.dart | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/test/game/bloc/start_game_event_test.dart b/test/game/bloc/start_game_event_test.dart index ff98abf1..4fd5623b 100644 --- a/test/game/bloc/start_game_event_test.dart +++ b/test/game/bloc/start_game_event_test.dart @@ -1,3 +1,5 @@ +// ignore_for_file: prefer_const_constructors + import 'package:flutter_test/flutter_test.dart'; import 'package:pinball/game/bloc/start_game_bloc.dart'; @@ -5,22 +7,22 @@ void main() { group('StartGameEvent', () { test('SelectCharacter supports value equality', () { expect( - const SelectCharacter(), - equals(const SelectCharacter()), + SelectCharacter(), + equals(SelectCharacter()), ); }); test('HowToPlay supports value equality', () { expect( - const HowToPlay(), - equals(const HowToPlay()), + HowToPlay(), + equals(HowToPlay()), ); }); test('Play supports value equality', () { expect( - const Play(), - equals(const Play()), + Play(), + equals(Play()), ); }); });