aboutsummaryrefslogtreecommitdiff
path: root/tests/io_lines.rs
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2020-10-25 23:16:20 -0700
committerChih-Hung Hsieh <chh@google.com>2020-10-25 23:16:20 -0700
commit32ee67eb397bdc1cf4aa9971c5f6eb0c65e656e6 (patch)
tree4c035f44f5ab63185eba73ee6a2c53d89859f494 /tests/io_lines.rs
parentdb6917d3753d8b851391d1016bf557fb09fbf54a (diff)
downloadfutures-32ee67eb397bdc1cf4aa9971c5f6eb0c65e656e6.tar.gz
Upgrade rust/crates/futures to 0.3.7
Test: make all rust crates Change-Id: If97a17007e814752392c4c66508c46a366437f0b
Diffstat (limited to 'tests/io_lines.rs')
-rw-r--r--tests/io_lines.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/io_lines.rs b/tests/io_lines.rs
index e10edd0..2552c7c 100644
--- a/tests/io_lines.rs
+++ b/tests/io_lines.rs
@@ -1,4 +1,3 @@
-#[cfg(any(feature = "std", feature = "executor"))]
mod util {
use futures::future::Future;
@@ -16,7 +15,6 @@ mod util {
}
}
-#[cfg(feature = "executor")]
#[test]
fn lines() {
use futures::executor::block_on;
@@ -41,7 +39,6 @@ fn lines() {
assert!(block_on(s.next()).is_none());
}
-#[cfg(feature = "std")]
#[test]
fn maybe_pending() {
use futures::stream::{self, StreamExt, TryStreamExt};