Fix failing test

This commit is contained in:
Rossen Stoyanchev
2012-10-26 22:01:35 -04:00
parent e14ba9dec3
commit fe77c3d5fe
2 changed files with 16 additions and 15 deletions

View File

@@ -72,7 +72,6 @@ public class AsyncTests {
public Callable<Person> getCallable() {
return new Callable<Person>() {
public Person call() throws Exception {
Thread.sleep(100);
return new Person("Joe");
}
};