summaryrefslogtreecommitdiff
path: root/test/sys/test_aio_drop.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/sys/test_aio_drop.rs')
-rw-r--r--test/sys/test_aio_drop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sys/test_aio_drop.rs b/test/sys/test_aio_drop.rs
index ef0f5041..9214957f 100644
--- a/test/sys/test_aio_drop.rs
+++ b/test/sys/test_aio_drop.rs
@@ -13,7 +13,7 @@ use tempfile::tempfile;
#[should_panic(expected = "Dropped an in-progress AioCb")]
#[cfg(not(target_env = "musl"))]
fn test_drop() {
- const WBUF: &'static [u8] = b"CDEF";
+ const WBUF: &[u8] = b"CDEF";
let f = tempfile().unwrap();
f.set_len(6).unwrap();