Fix uneeded spaces
This commit is contained in:
parent
eb8a1b3564
commit
20ac1635b2
1 changed files with 2 additions and 2 deletions
|
@ -354,11 +354,11 @@ class LevelFacadeTest {
|
|||
fun testFlagAllMines() {
|
||||
levelFacadeOf(3, 3, 5, 200L).run {
|
||||
plantMinesExcept(3)
|
||||
field.filter { it.hasMine }.forEach {
|
||||
field.filter { it.hasMine }.forEach {
|
||||
assertFalse(it.mark.isFlag())
|
||||
}
|
||||
flagAllMines()
|
||||
field.filter { it.hasMine }.forEach {
|
||||
field.filter { it.hasMine }.forEach {
|
||||
assertTrue(it.mark.isFlag())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue