aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-08 03:51:31 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-08 03:51:31 -0500
commitf5e9c72622f2fceeb083f5df872c77dd1d39cffb (patch)
tree6289c9ee55b7abb582ae20c00638a3a61ce9c1dd
parentac6aa6cb1659dd716701e2af41756ed3fe5faf0d (diff)
downloadvt100-rust-f5e9c72622f2fceeb083f5df872c77dd1d39cffb.tar.gz
vt100-rust-f5e9c72622f2fceeb083f5df872c77dd1d39cffb.zip
remove some unnecessary tests
-rw-r--r--tests/text.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/text.rs b/tests/text.rs
index 7206e63..24170b8 100644
--- a/tests/text.rs
+++ b/tests/text.rs
@@ -10,7 +10,6 @@ fn ascii() {
assert_eq!(parser.screen().cell(0, 3).unwrap().contents(), "");
assert_eq!(parser.screen().cell(1, 0).unwrap().contents(), "");
assert_eq!(parser.screen().contents(), "foo");
- assert_eq!(parser.screen().contents(), "foo");
}
#[test]
@@ -24,7 +23,6 @@ fn utf8() {
assert_eq!(parser.screen().cell(0, 4).unwrap().contents(), "");
assert_eq!(parser.screen().cell(1, 0).unwrap().contents(), "");
assert_eq!(parser.screen().contents(), "café");
- assert_eq!(parser.screen().contents(), "café");
}
#[test]
@@ -43,7 +41,6 @@ fn newlines() {
assert_eq!(parser.screen().cell(0, 3).unwrap().contents(), "");
assert_eq!(parser.screen().cell(3, 0).unwrap().contents(), "");
assert_eq!(parser.screen().contents(), "f\noo\nood");
- assert_eq!(parser.screen().contents(), "f\noo\nood");
}
#[test]
@@ -59,7 +56,6 @@ fn wide() {
assert_eq!(parser.screen().cell(0, 6).unwrap().contents(), "");
assert_eq!(parser.screen().cell(1, 0).unwrap().contents(), "");
assert_eq!(parser.screen().contents(), "aデbネ");
- assert_eq!(parser.screen().contents(), "aデbネ");
}
#[test]