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

@ -121,7 +121,7 @@ class DataflowSpec extends AkkaSpec with DefaultTimeout {
val a, b, c = Promise[Int]()
val result2 = flow {
val n = (a << c).value.get.right.get + 10
val n = (a << c).value.get.get + 10
b << (c() - 2)
a() + n * b()
}