It seems that due to the recent changes to RxJava as per release 1.0.15 OperatorScan has changed to fix github/rxjava#3171. Due to this change the test KeyEventSourceTest was failing since the scan operator now emits the initial value if created via the call Observable.scan(initialValue, accumulator).
It seems that due to the recent changes to RxJava as per release 1.0.15
OperatorScan
has changed to fix github/rxjava#3171. Due to this change the testKeyEventSourceTest
was failing since the scan operator now emits the initial value if created via the callObservable.scan(initialValue, accumulator)
.This issue will fix that test.