aboutsummaryrefslogtreecommitdiffstats
path: root/t/init_test.py
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-22 11:41:30 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-22 11:41:30 -0400
commit26305a754b0c6e9edc9ed620e58e8507a95d8dec (patch)
treeaac01ceef992e5d0cc9752eb07b78b109dbdcea4 /t/init_test.py
parent4afd275b89be802582e1b4dd665411e18f30336d (diff)
downloadlibvt100-python-26305a754b0c6e9edc9ed620e58e8507a95d8dec.tar.gz
libvt100-python-26305a754b0c6e9edc9ed620e58e8507a95d8dec.zip
default this to the whole screen
Diffstat (limited to 't/init_test.py')
-rw-r--r--t/init_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/init_test.py b/t/init_test.py
index e046ca5..4fded7f 100644
--- a/t/init_test.py
+++ b/t/init_test.py
@@ -17,8 +17,8 @@ class InitTest(VT100Test):
cell = self.vt.cell(0, 80)
assert cell is None
- assert self.vt.window_contents(0, 0, 500, 500) == ('\n' * 24)
- assert self.vt.window_contents_formatted(0, 0, 500, 500) == ('\n' * 24)
+ assert self.vt.window_contents() == ('\n' * 24)
+ assert self.vt.window_contents_formatted() == ('\n' * 24)
assert self.vt.title() == ""
assert self.vt.icon_name() == ""