summaryrefslogtreecommitdiffstats
path: root/tokio/tests/async_send_sync.rs
diff options
context:
space:
mode:
authorZahari Dichev <zaharidichev@gmail.com>2020-09-05 21:32:20 +0300
committerGitHub <noreply@github.com>2020-09-05 20:32:20 +0200
commit048174012d0cd8b0d763175ec2f1556e0d6fea95 (patch)
treee39bee9946a59f5ccfffc34a97199c38003bfb20 /tokio/tests/async_send_sync.rs
parent38cab933301b60a7fa730bb999bc08cdb5529476 (diff)
fs: remove File::seek (#2810)
Fixes: #1993 Signed-off-by: Zahari Dichev <zaharidichev@gmail.com>
Diffstat (limited to 'tokio/tests/async_send_sync.rs')
-rw-r--r--tokio/tests/async_send_sync.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tokio/tests/async_send_sync.rs b/tokio/tests/async_send_sync.rs
index 45d11bd4..f1eed0e4 100644
--- a/tokio/tests/async_send_sync.rs
+++ b/tokio/tests/async_send_sync.rs
@@ -152,7 +152,6 @@ async_assert_fn!(tokio::fs::DirEntry::file_type(_): Send & Sync);
async_assert_fn!(tokio::fs::File::open(&str): Send & Sync);
async_assert_fn!(tokio::fs::File::create(&str): Send & Sync);
-async_assert_fn!(tokio::fs::File::seek(_, std::io::SeekFrom): Send & Sync);
async_assert_fn!(tokio::fs::File::sync_all(_): Send & Sync);
async_assert_fn!(tokio::fs::File::sync_data(_): Send & Sync);
async_assert_fn!(tokio::fs::File::set_len(_, u64): Send & Sync);