Import errors in tests
This commit is contained in:
parent
3b6c946bb4
commit
b571c8a29c
1 changed files with 4 additions and 3 deletions
|
@ -67,7 +67,8 @@ pub fn decode_varint(bytes: &[u8]) -> Result<Option<(Varint, usize)>, Error> {
|
||||||
mod tests {
|
mod tests {
|
||||||
|
|
||||||
use futures::future::{ok, Future};
|
use futures::future::{ok, Future};
|
||||||
use super::{decode_varint, Error};
|
use super::{decode_varint};
|
||||||
|
use super::Error::{CorruptVarint};
|
||||||
use super::Varint::{Unknown, Value};
|
use super::Varint::{Unknown, Value};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -82,8 +83,8 @@ mod tests {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn fail_corrupted_varints() {
|
fn fail_corrupted_varints() {
|
||||||
assert_eq!(decode_varint(&[0]), Err(Error::CorruptVarint));
|
assert_eq!(decode_varint(&[0]), Err(CorruptVarint));
|
||||||
assert_eq!(decode_varint(&[0, 0, 0]), Err(Error::CorruptVarint));
|
assert_eq!(decode_varint(&[0, 0, 0]), Err(CorruptVarint));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Reference in a new issue