diff --git a/src/uu/tr/src/operation.rs b/src/uu/tr/src/operation.rs index 73ec27c14..1f17809ec 100644 --- a/src/uu/tr/src/operation.rs +++ b/src/uu/tr/src/operation.rs @@ -605,19 +605,3 @@ where 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 - ); - } - } - } -}