mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 00:17:11 -07:00
Test investigation.
This commit is contained in:
parent
933abd7190
commit
51b7e46f46
1 changed files with 4 additions and 1 deletions
|
@ -67,7 +67,10 @@ public class DynamicGraphTest {
|
|||
val ex = DynamicGraphExecutor(g, factory)
|
||||
ex.run()
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue