aboutsummaryrefslogtreecommitdiffstats
path: root/t/init_test.py
diff options
context:
space:
mode:
Diffstat (limited to 't/init_test.py')
-rw-r--r--t/init_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/init_test.py b/t/init_test.py
index c4b8b48..8dca6b1 100644
--- a/t/init_test.py
+++ b/t/init_test.py
@@ -2,8 +2,7 @@ from . import VT100Test
class InitTest(VT100Test):
def test_init(self):
- assert self.vt.rows == 24
- assert self.vt.cols == 80
+ assert self.vt.window_size() == (24, 80)
row, col = self.vt.cursor_pos()
assert row == 0