From 82e24a5f1811ba11ffeb377507d55578065904a4 Mon Sep 17 00:00:00 2001 From: Allison Ryan Date: Fri, 6 May 2022 12:51:31 -0500 Subject: [PATCH] fix: test typo --- .../sparky_computer/cubit/sparky_computer_cubit_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pinball_components/test/src/components/sparky_computer/cubit/sparky_computer_cubit_test.dart b/packages/pinball_components/test/src/components/sparky_computer/cubit/sparky_computer_cubit_test.dart index 9422f0f4..b08b412f 100644 --- a/packages/pinball_components/test/src/components/sparky_computer/cubit/sparky_computer_cubit_test.dart +++ b/packages/pinball_components/test/src/components/sparky_computer/cubit/sparky_computer_cubit_test.dart @@ -7,14 +7,14 @@ void main() { 'SparkyComputerCubit', () { blocTest( - 'onBallEntered emits dimmed', + 'onBallEntered emits withBall', build: SparkyComputerCubit.new, act: (bloc) => bloc.onBallEntered(), expect: () => [SparkyComputerState.withBall], ); blocTest( - 'onBallTurboCharged emits lit', + 'onBallTurboCharged emits withoutBall', build: SparkyComputerCubit.new, act: (bloc) => bloc.onBallTurboCharged(), expect: () => [SparkyComputerState.withoutBall],