ReactiveX / RxSwing

RxJava bindings for Swing
Apache License 2.0
98 stars 23 forks source link

Fix broken KeyEventSourceTest #53

Closed mikebaum closed 8 years ago

mikebaum commented 8 years ago

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.

mikebaum commented 8 years ago

Fixed by PR #54.