From 95911fea63aa7f14f4631afd959837fd37b18fdd Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 5 Apr 2022 14:24:21 +0100 Subject: [PATCH] fix: failing copyWith test --- test/game/bloc/game_state_test.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/test/game/bloc/game_state_test.dart b/test/game/bloc/game_state_test.dart index 9fb863ef..15dee5ba 100644 --- a/test/game/bloc/game_state_test.dart +++ b/test/game/bloc/game_state_test.dart @@ -225,6 +225,7 @@ void main() { gameState.copyWith( score: otherGameState.score, balls: otherGameState.balls, + bonusBalls: otherGameState.bonusBalls, activatedBonusLetters: otherGameState.activatedBonusLetters, activatedDashNests: otherGameState.activatedDashNests, bonusHistory: otherGameState.bonusHistory,