Fix tests

This commit is contained in:
Lucas Lima 2020-08-23 21:26:46 -03:00
parent 17a2e04128
commit 2c840683eb

View file

@ -165,7 +165,6 @@ class WatchGameActivity : AppCompatActivity(), AmbientModeSupport.AmbientCallbac
}
Event.Victory -> {
status = Status.Over()
messageText.text = getString(R.string.victory)
waitAndShowNewGameButton()
}
@ -179,16 +178,6 @@ class WatchGameActivity : AppCompatActivity(), AmbientModeSupport.AmbientCallbac
waitAndShowNewGameButton()
}
}
Event.ResumeVictory -> {
status = Status.Over()
messageText.text = getString(R.string.victory)
waitAndShowNewGameButton(0L)
}
Event.ResumeGameOver -> {
status = Status.Over()
messageText.text = getString(R.string.game_over)
waitAndShowNewGameButton(0L)
}
else -> {
}
}