1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-02 05:57:46 +00:00

tests ~ (sub-crate/od) fix cargo clippy complaints (unused imports)

This commit is contained in:
Roy Ivy III 2020-08-08 22:38:11 -05:00
parent dd72893771
commit 925137afce
2 changed files with 0 additions and 2 deletions

View file

@ -1,6 +1,5 @@
// https://github.com/lazy-bitfield/rust-mockstream/pull/2
use std::error::Error as errorError;
use std::io::{Cursor, Error, ErrorKind, Read, Result};
/// `FailingMockStream` mocks a stream which will fail upon read or write

View file

@ -77,7 +77,6 @@ impl<R: HasError> HasError for PartialReader<R> {
mod tests {
use super::*;
use mockstream::*;
use std::error::Error;
use std::io::{Cursor, ErrorKind, Read};
#[test]