Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
cornerman authored Nov 21, 2023
1 parent c2a225f commit 6e0aa78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion colibri/src/test/scala/colibri/ObservableSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1855,7 +1855,7 @@ class ObservableSpec extends AsyncFlatSpec with Matchers {
val handler = Subject.behavior[Int](0)
val stream = Observable.race(Observable.empty, handler, Observable(1, 2))

val _ = stream.unsafeSubscribe(
val cancelable = stream.unsafeSubscribe(
Observer.create[Int](
received ::= _,
_ => errors += 1,
Expand Down

0 comments on commit 6e0aa78

Please sign in to comment.