test: fixed error in test

pull/416/head
RuiAlonso 3 years ago
parent 9a3270dca8
commit 6b80f1c47b

@ -16,7 +16,7 @@ class RampMultiplierBehavior extends Component
final hitsIncreased = previousState.hits < newState.hits;
final achievedFiveShots = newState.hits % 5 == 0;
final notMaxMultiplier =
readBloc<GameBloc, GameState>().state.isMaxMultiplier;
!readBloc<GameBloc, GameState>().state.isMaxMultiplier;
return hitsIncreased & achievedFiveShots && notMaxMultiplier;
}

Loading…
Cancel
Save