Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Mar 28, 2018
1 parent 636b3de commit fb11984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/issues.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,12 +231,13 @@ fn issue_721() {
assert_eq!(parse_to!("foo", String), Ok(("", "foo".to_string())));
}

#[cfg(feature = "std")]
named!(issue_717<&[u8], Vec<&[u8]> >,
separated_list!(tag!([0x0]), is_not!([0x0u8]))
);

struct NoPartialEq {
value: i32
value: i32,
}

named!(issue_724<&str, i32>,
Expand All @@ -248,4 +249,3 @@ named!(issue_724<&str, i32>,
(metadata.0.value + metadata.1.value)
)
);

0 comments on commit fb11984

Please sign in to comment.