From 4afd275b89be802582e1b4dd665411e18f30336d Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 22 Oct 2014 11:35:50 -0400 Subject: rename a bunch of methods --- t/basic_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/basic_test.py') diff --git a/t/basic_test.py b/t/basic_test.py index eb2a1a9..7922e6d 100644 --- a/t/basic_test.py +++ b/t/basic_test.py @@ -7,7 +7,7 @@ class BasicTest(unittest.TestCase): vt = vt100.vt100(24, 80) string = b"foo\033[31m\033[32mb\033[3;7;42ma\033[23mr" vt.process(string) - assert vt.get_string_plaintext(0, 0, 0, 50) == "foobar\n" + assert vt.window_contents(0, 0, 0, 50) == "foobar\n" assert vt.cell(0, 0).fgcolor() is None assert vt.cell(0, 3).fgcolor() == 2 assert vt.cell(0, 4).fgcolor() == 2 -- cgit v1.2.3-54-g00ecf