aboutsummaryrefslogtreecommitdiffstats
path: root/tests/split-escapes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/split-escapes.rs')
-rw-r--r--tests/split-escapes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/split-escapes.rs b/tests/split-escapes.rs
index 097aa6f..fa5b6b1 100644
--- a/tests/split-escapes.rs
+++ b/tests/split-escapes.rs
@@ -10,7 +10,7 @@ fn get_file_contents(name: &str) -> Vec<u8> {
fn write_to_parser(chunks: &mut Vec<Vec<u8>>) -> (String, Vec<u8>) {
let mut parser = vt100::Parser::new(37, 193, 0);
for chunk in chunks.iter_mut() {
- parser.process(&chunk);
+ parser.process(chunk);
}
(
parser.screen().contents(),