remove println's in test

This commit is contained in:
Jan Van Besien 2010-03-04 14:50:11 +01:00
parent a14b104160
commit 77b44551fd

View file

@ -20,7 +20,6 @@ class ExecutorBasedEventDrivenDispatcherActorsTest extends JUnitSuite with MustM
case x: Int => {
Thread.sleep(50) // slow actor
finishedCounter.countDown
println("s processed " + x)
}
}
}
@ -32,7 +31,6 @@ class ExecutorBasedEventDrivenDispatcherActorsTest extends JUnitSuite with MustM
def receive = {
case x: Int => {
finishedCounter.countDown
println("f processed " + x)
}
}
}