ReactiveX / RxSwing

RxJava bindings for Swing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix broken KeyEventSourceTest

mikebaum opened this issue · comments

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).

This issue will fix that test.

Fixed by PR #54.