Merge pull request #26391 from akka/wip-26382-patriknw

fix 2.13 compilation error, SortedSet, #26382
This commit is contained in:
Patrik Nordwall 2019-02-15 17:50:56 +01:00 committed by GitHub
commit 1389d696bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ sudo: false
scala:
- "2.12.8"
- "2.11.12"
- "2.13.0-M5"
before_install:
# using jabba for custom jdk management

View file

@ -87,7 +87,7 @@ class ClusterSingletonManagerDownedSpec extends MultiNodeSpec(ClusterSingletonMa
within(15.seconds) {
awaitAssert {
cluster.state.members.size should ===(3)
cluster.state.members.map(_.status) should ===(Set(MemberStatus.Up))
cluster.state.members.unsorted.map(_.status) should ===(Set(MemberStatus.Up))
}
}
runOn(first) {