Skip to content

Commit

Permalink
increased timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Damon Rolfs committed Sep 30, 2014
1 parent 4ca854e commit 81929be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/src/test/scala/blog/post/PostModuleSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class PostModuleSpec extends AggregateRootSpec[PostModuleSpec] {
val content = PostContent( author = "Damon", title = "Add Content", body = "add body content" )
val post = PostModule aggregateOf id
post ! AddPost( id, content )
probe.expectMsgPF( max = 400.millis, hint = "post added" ) { //DMR: Is this sensitive to total num of tests executed?
probe.expectMsgPF( max = 1.second, hint = "post added" ) { //DMR: Is this sensitive to total num of tests executed?
case ReliableMessage( _, Envelope( payload: PostAdded, _ ) ) => payload.content mustBe content
}
}
Expand Down

0 comments on commit 81929be

Please sign in to comment.