summaryrefslogtreecommitdiff
path: root/test/test_fcntl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_fcntl.rs')
-rw-r--r--test/test_fcntl.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_fcntl.rs b/test/test_fcntl.rs
index 345e04da..e51044a0 100644
--- a/test/test_fcntl.rs
+++ b/test/test_fcntl.rs
@@ -231,7 +231,7 @@ fn test_readlink() {
mod linux_android {
use libc::loff_t;
use std::io::prelude::*;
- use std::io::{IoSlice, SeekFrom};
+ use std::io::IoSlice;
use std::os::unix::prelude::*;
use nix::fcntl::*;
@@ -272,7 +272,7 @@ mod linux_android {
.unwrap();
let mut res: String = String::new();
- tmp2.seek(SeekFrom::Start(0)).unwrap();
+ tmp2.rewind().unwrap();
tmp2.read_to_string(&mut res).unwrap();
assert_eq!(res, String::from("bar"));