aboutsummaryrefslogtreecommitdiffstats
path: root/tests/processing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/processing.rs')
-rw-r--r--tests/processing.rs4
1 files changed, 2 insertions, 2 deletions
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);