From b22705aaf6c1f5004b1203fd78cf1d1563c066e7 Mon Sep 17 00:00:00 2001 From: Erick Date: Mon, 14 Mar 2022 15:00:31 -0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Allison Ryan <77211884+allisonryan0002@users.noreply.github.com> --- test/game/components/bonus_word_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/game/components/bonus_word_test.dart b/test/game/components/bonus_word_test.dart index 8d3eb0b1..145e6dd0 100644 --- a/test/game/components/bonus_word_test.dart +++ b/test/game/components/bonus_word_test.dart @@ -29,7 +29,7 @@ void main() { group('listenWhen', () { test( - 'returns true when there is a new bonus word awarded', + 'returns true when there is a new word bonus awarded', () { final previousState = MockGameState(); when(() => previousState.bonusHistory).thenReturn([]); @@ -48,7 +48,7 @@ void main() { ); test( - 'returns false when there is no new bonus word awarded', + 'returns false when there is no new word bonus awarded', () { final previousState = MockGameState(); when(() => previousState.bonusHistory).thenReturn([GameBonus.word]);