Update tests. remove converted test for the time being

This commit is contained in:
Sam El-Husseini
2018-04-21 10:45:02 -07:00
parent ff892dbcb4
commit 6ac64f0e3d
11 changed files with 36 additions and 32 deletions

View File

@ -156,7 +156,7 @@ function surgery(): number {
`, 150)
state = "SHOCKED"
} else if (state == "SHOCKED") {
let recover = Math.random(100)
let recover = Math.randomInt(100)
if (recover >= recoveryProbability) {
state = "RECOVERED"
} else {