summaryrefslogtreecommitdiff
path: root/Rx/v2/test/operators/filter.cpp
diff options
context:
space:
mode:
authorValeriy Kopylov <valery.kopylov@akvelon.com>2014-06-25 17:41:38 +0400
committerValeriy Kopylov <valery.kopylov@akvelon.com>2014-06-25 17:41:38 +0400
commit61dc7e637140c6d9697099cdf062e4b084167036 (patch)
treeeae89ccc8c7ff5a2b9c23038a91a5ffb3582c9ef /Rx/v2/test/operators/filter.cpp
parent07704df69b93414b638aa5433d6418df5c69e157 (diff)
downloadRxCpp-61dc7e637140c6d9697099cdf062e4b084167036.tar.gz
Convert tabs to spaces
Diffstat (limited to 'Rx/v2/test/operators/filter.cpp')
-rw-r--r--Rx/v2/test/operators/filter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rx/v2/test/operators/filter.cpp b/Rx/v2/test/operators/filter.cpp
index 4d56dfa..529f10a 100644
--- a/Rx/v2/test/operators/filter.cpp
+++ b/Rx/v2/test/operators/filter.cpp
@@ -123,7 +123,7 @@ SCENARIO("filter stops on disposal", "[where][filter][operators]"){
on.on_next(560, 10),
on.on_next(580, 11),
on.on_completed(600)
- });
+ });
WHEN("filtered to ints that are primes"){
@@ -201,7 +201,7 @@ SCENARIO("filter stops on error", "[where][filter][operators]"){
on.on_next(610, 12),
on.on_error(620, std::runtime_error("error in unsubscribed stream")),
on.on_completed(630)
- });
+ });
WHEN("filtered to ints that are primes"){
@@ -280,7 +280,7 @@ SCENARIO("filter stops on throw from predicate", "[where][filter][operators]"){
on.on_next(610, 12),
on.on_error(620, std::runtime_error("error in unsubscribed stream")),
on.on_completed(630)
- });
+ });
WHEN("filtered to ints that are primes"){
@@ -361,7 +361,7 @@ SCENARIO("filter stops on dispose from predicate", "[where][filter][operators]")
on.on_next(610, 12),
on.on_error(620, std::exception()),
on.on_completed(630)
- });
+ });
auto res = w.make_subscriber<int>();