Removed bad test

Signed-off-by: Hanif Bin Ariffin <hanif.ariffin.4326@gmail.com>
This commit is contained in:
Hanif Bin Ariffin 2021-08-02 00:00:33 +08:00
parent 0032f2c4a0
commit 9c6f2c765d

View file

@ -605,19 +605,3 @@ where
output_buf.clear(); output_buf.clear();
} }
} }
#[test]
fn test_parse_octal() {
for a in '0'..='7' {
for b in '0'..='7' {
for c in '0'..='7' {
assert!(
Sequence::from_str(format!("\\{}{}{}", a, b, c).as_str())
.unwrap()
.len()
== 1
);
}
}
}
}