Update scala to 2.13.3 and silencer to 1.7.0 (#28991)
* Update scala to 2.13.3 and silencer to 1.7.0 * Also travis * Fix various warnings
This commit is contained in:
parent
f7bfed02bc
commit
c41c0420ad
113 changed files with 180 additions and 206 deletions
|
|
@ -102,7 +102,7 @@ class FusingSpec extends StreamSpec {
|
|||
}
|
||||
|
||||
"propagate downstream errors through async boundary" in {
|
||||
val promise = Promise[Done]
|
||||
val promise = Promise[Done]()
|
||||
val slowInitSrc = UnfoldResourceNoAsyncBoundry(
|
||||
() => { Await.result(promise.future, 1.minute); () },
|
||||
(_: Unit) => Some(1),
|
||||
|
|
@ -132,7 +132,7 @@ class FusingSpec extends StreamSpec {
|
|||
}
|
||||
|
||||
"propagate 'parallel' errors through async boundary via a common downstream" in {
|
||||
val promise = Promise[Done]
|
||||
val promise = Promise[Done]()
|
||||
val slowInitSrc = UnfoldResourceNoAsyncBoundry(
|
||||
() => { Await.result(promise.future, 1.minute); () },
|
||||
(_: Unit) => Some(1),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue