aboutsummaryrefslogtreecommitdiff
path: root/tests/try_stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/try_stream.rs')
-rw-r--r--tests/try_stream.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/try_stream.rs b/tests/try_stream.rs
index 06dcc3d..c404e62 100644
--- a/tests/try_stream.rs
+++ b/tests/try_stream.rs
@@ -66,7 +66,7 @@ async fn multi_try() {
fn test() -> impl Stream<Item = Result<i32, String>> {
try_stream! {
let a = Ok::<_, String>(Ok::<_, String>(123))??;
- for _ in (1..10) {
+ for _ in 1..10 {
yield a;
}
}