Skip to content

Commit 7c05b94

Browse files
committed
fix compilation error in Test
1 parent 5c7e670 commit 7c05b94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/repl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ named!(one_arg <String>, alt!(dq_string | sq_string | consecutive_string));
101101
named!(arg_list<Vec<String>>, separated_list!(is_a!(" \t"), one_arg));
102102

103103
#[cfg(test)]
104-
fn test_parse(s: &str) -> Result<Vec<String>, Err<&[u8]>> {
104+
fn test_parse(s: &str) -> Result<Vec<String>, ::nom::Err<&[u8]>> {
105105
arg_list(s.as_ref()).to_result()
106106
}
107107

0 commit comments

Comments
 (0)