Wait on shutdown of extra actor systems in tests. See #3217
This commit is contained in:
parent
3bc661bed6
commit
e00ab533bb
84 changed files with 762 additions and 845 deletions
|
|
@ -161,7 +161,7 @@ class TransactorDocSpec extends AkkaSpec {
|
|||
|
||||
count must be === 1
|
||||
|
||||
system.shutdown()
|
||||
shutdown(system)
|
||||
}
|
||||
|
||||
"coordinated api" in {
|
||||
|
|
@ -191,7 +191,7 @@ class TransactorDocSpec extends AkkaSpec {
|
|||
|
||||
coordinated.await()
|
||||
|
||||
system.shutdown()
|
||||
shutdown(system)
|
||||
}
|
||||
|
||||
"counter transactor" in {
|
||||
|
|
@ -208,7 +208,7 @@ class TransactorDocSpec extends AkkaSpec {
|
|||
|
||||
underlyingCounter.count.single.get must be === 1
|
||||
|
||||
system.shutdown()
|
||||
shutdown(system)
|
||||
}
|
||||
|
||||
"friendly counter transactor" in {
|
||||
|
|
@ -229,6 +229,6 @@ class TransactorDocSpec extends AkkaSpec {
|
|||
underlyingFriendlyCounter.count.single.get must be === 1
|
||||
underlyingFriend.count.single.get must be === 1
|
||||
|
||||
system.shutdown()
|
||||
shutdown(system)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue