5313cf3bf0
Some tests were using files that others called blackBoxFile() on. Since those files are now moved to box/, copy them back to make the tests pass
7 lines
79 B
Kotlin
7 lines
79 B
Kotlin
enum class State {
|
|
O
|
|
K
|
|
}
|
|
|
|
fun box() = "${State.O.name()}${State.K.name()}"
|