summaryrefslogtreecommitdiff
path: root/Rx/v2/test/operators/map.cpp
diff options
context:
space:
mode:
authorKirk Shoop <kirk.shoop@microsoft.com>2014-08-27 23:59:12 -0700
committerKirk Shoop <kirk.shoop@microsoft.com>2014-08-28 00:10:08 -0700
commit4b6b5491d28e14b2caca95516bd5c06fd8956d3c (patch)
tree5507c53e5c11ffa56492f62f648f68035c4cc308 /Rx/v2/test/operators/map.cpp
parentebfff78d8e64f67e8e58717c7780bb2f8a8733d2 (diff)
downloadRxCpp-4b6b5491d28e14b2caca95516bd5c06fd8956d3c.tar.gz
update tests to use on.next instead of on.on_next
Diffstat (limited to 'Rx/v2/test/operators/map.cpp')
-rw-r--r--Rx/v2/test/operators/map.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/Rx/v2/test/operators/map.cpp b/Rx/v2/test/operators/map.cpp
index 4491511..aab227f 100644
--- a/Rx/v2/test/operators/map.cpp
+++ b/Rx/v2/test/operators/map.cpp
@@ -13,15 +13,15 @@ SCENARIO("map stops on completion", "[map][operators]"){
long invoked = 0;
auto xs = sc.make_hot_observable({
- on.on_next(180, 1),
- on.on_next(210, 2),
- on.on_next(240, 3),
- on.on_next(290, 4),
- on.on_next(350, 5),
- on.on_completed(400),
- on.on_next(410, -1),
- on.on_completed(420),
- on.on_error(430, std::runtime_error("error on unsubscribed stream"))
+ on.next(180, 1),
+ on.next(210, 2),
+ on.next(240, 3),
+ on.next(290, 4),
+ on.next(350, 5),
+ on.completed(400),
+ on.next(410, -1),
+ on.completed(420),
+ on.error(430, std::runtime_error("error on unsubscribed stream"))
});
WHEN("mapped to ints that are one larger"){
@@ -40,11 +40,11 @@ SCENARIO("map stops on completion", "[map][operators]"){
THEN("the output stops on completion"){
auto required = rxu::to_vector({
- on.on_next(210, 3),
- on.on_next(240, 4),
- on.on_next(290, 5),
- on.on_next(350, 6),
- on.on_completed(400)
+ on.next(210, 3),
+ on.next(240, 4),
+ on.next(290, 5),
+ on.next(350, 6),
+ on.completed(400)
});
auto actual = res.get_observer().messages();
REQUIRE(required == actual);