used wrong escape code, whoops...

This commit is contained in:
David Bittner
2019-04-27 17:07:57 -04:00
parent cb8afd6823
commit b9ca804814
4 changed files with 21 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ fn test_reset_mode() {
#[test]
fn test_parser_iterator() {
let parse_str = "Hello, world? How are \x27[=7lyou? I hope you're doing well.";
let parse_str = "Hello, world? How are \x1b[=7lyou? I hope you're doing well.";
let strings: Vec<Output> = ParserIterator::new(parse_str)
.collect();