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

Test investigation.

This commit is contained in:
Cedric Beust 2015-10-27 21:01:29 -07:00
parent 933abd7190
commit 51b7e46f46

View file

@ -67,7 +67,10 @@ public class DynamicGraphTest {
val ex = DynamicGraphExecutor(g, factory) val ex = DynamicGraphExecutor(g, factory)
ex.run() ex.run()
Thread.yield() Thread.yield()
Assert.assertEquals(runNodes, listOf(1, 2, 3, 5)) val expected = listOf(1, 2, 3, 5)
if (runNodes != expected) {
Assert.assertFalse("Expected $expected but got $runNodes")
}
} }
@Test @Test