summaryrefslogtreecommitdiff
path: root/Rx/v2/test
diff options
context:
space:
mode:
authorGrigoriy Chudnov <g.chudnov@gmail.com>2016-12-31 10:20:51 +0300
committerKirk Shoop <kirk.shoop@microsoft.com>2016-12-31 02:41:53 -0800
commitac2ac8d9a610b908568d09e0abae90047e1fa96c (patch)
tree1f1c842089285774859591884e1a9995dfa8ce25 /Rx/v2/test
parent21552b41774320a3f91c3477d37f1a41a916a741 (diff)
downloadRxCpp-ac2ac8d9a610b908568d09e0abae90047e1fa96c.tar.gz
decouple window from observable
Diffstat (limited to 'Rx/v2/test')
-rw-r--r--Rx/v2/test/operators/window.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rx/v2/test/operators/window.cpp b/Rx/v2/test/operators/window.cpp
index 8d022df..ca105fe 100644
--- a/Rx/v2/test/operators/window.cpp
+++ b/Rx/v2/test/operators/window.cpp
@@ -1,7 +1,7 @@
#include "../test.h"
-
#include <rxcpp/operators/rx-reduce.hpp>
#include <rxcpp/operators/rx-map.hpp>
+#include <rxcpp/operators/rx-window.hpp>
SCENARIO("window count, basic", "[window][operators]"){
GIVEN("1 hot observable of ints."){
@@ -93,7 +93,7 @@ SCENARIO("window count, inner timings", "[window][operators]"){
rxsc::test::created_time,
[&](const rxsc::schedulable&) {
res = xs
- .window(3, 2);
+ | rxo::window(3, 2);
}
);