Skip to content

Commit

Permalink
Better diagnostic for failing jvm/future-spec
Browse files Browse the repository at this point in the history
  • Loading branch information
retronym committed Mar 30, 2017
1 parent f5ce29b commit 5cd3442
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/files/jvm/future-spec/FutureTests.scala
Expand Up @@ -76,7 +76,8 @@ class FutureTests extends MinimalScalaTest {
}
Await.ready(waiting, 2000 millis)

ms.size mustBe (4)
if (ms.size != 4)
assert(ms.size != 4, "Expected 4 throwables, found: " + ms)
//FIXME should check
}
}
Expand Down

0 comments on commit 5cd3442

Please sign in to comment.