aboutsummaryrefslogtreecommitdiffstats
path: root/tests/basic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic.rs')
-rw-r--r--tests/basic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basic.rs b/tests/basic.rs
index ec3a8d7..7312928 100644
--- a/tests/basic.rs
+++ b/tests/basic.rs
@@ -10,7 +10,7 @@ mod tests {
assert_eq!(screen.rows(), 24);
assert_eq!(screen.cols(), 80);
- let input = "foo\x1b[31m\x1b[32mb\x1b[3;7;42ma\x1b[23mr";
+ let input = b"foo\x1b[31m\x1b[32mb\x1b[3;7;42ma\x1b[23mr";
screen.process(input);
assert_eq!(screen.window_contents(0, 0, 0, 50), "foobar\n");
}