From 67153dd09fa8552d486296673870ecfde525eae7 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 20 Oct 2014 23:25:28 -0400 Subject: clean up some more api --- t/init_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 't') 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 -- cgit v1.2.3