aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/mod.rs')
-rw-r--r--tests/helpers/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/helpers/mod.rs b/tests/helpers/mod.rs
index 5839f02..a5b4ce6 100644
--- a/tests/helpers/mod.rs
+++ b/tests/helpers/mod.rs
@@ -66,6 +66,9 @@ pub fn compare_screens(
{
is!(Bytes(&got_row), Bytes(&expected_row));
}
+ for i in 0..rows {
+ is!(got.row_wrapped(i), expected.row_wrapped(i));
+ }
is!(
Bytes(&got.contents_diff(vt100::Parser::default().screen())),
Bytes(&expected.contents_diff(vt100::Parser::default().screen()))