1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

update to kotlin beta 4

This commit is contained in:
Kirill Rakhman 2015-12-27 20:02:18 +01:00
parent e8f271fddf
commit 7c0dd710ea
8 changed files with 10 additions and 11 deletions

View file

@ -64,7 +64,7 @@ public class DynamicGraphTest {
val factory = createFactory(runNodes, { n -> n != 3 })
val ex = DynamicGraphExecutor(g, factory)
ex.run()
Thread.yield()
Thread.`yield`()
Assert.assertTrue(! runNodes.contains(4))
Assert.assertTrue(! runNodes.contains(10))
}