From 8d4dda299bc3f105d86eea0f59acdd37130f291c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 10 Nov 2019 08:31:12 -0500 Subject: add Default impl for Parser --- tests/processing.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/processing.rs') diff --git a/tests/processing.rs b/tests/processing.rs index 7cc384c..5bfb85d 100644 --- a/tests/processing.rs +++ b/tests/processing.rs @@ -2,7 +2,7 @@ #[test] fn split_escape_sequences() { - let mut parser = vt100::Parser::new(24, 80, 0); + let mut parser = vt100::Parser::default(); let contents = parser.screen().contents(); parser.process(b"abc"); assert_ne!(parser.screen().contents(), contents); @@ -193,7 +193,7 @@ fn split_escape_sequences() { #[test] fn split_utf8() { - let mut parser = vt100::Parser::new(24, 80, 0); + let mut parser = vt100::Parser::default(); let contents = parser.screen().contents(); parser.process(b"a"); assert_ne!(parser.screen().contents(), contents); -- cgit v1.2.3-54-g00ecf