port onto SBT-0.12 branch

This commit is contained in:
Roland 2012-08-20 15:21:44 +02:00
parent 8fe8fc5512
commit a15900a591
23 changed files with 99 additions and 81 deletions

View file

@ -93,7 +93,7 @@ public class JavaFutureTests {
Throwable exception = new NullPointerException();
cf.failure(exception);
assertTrue(latch.await(5000, TimeUnit.MILLISECONDS));
assertEquals(f.value().get().left().get(), exception);
assertEquals(f.value().get().failed().get(), exception);
}
@Test