From 524af9b4236ec347e9e783e57a166ed3eb1c600b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 20 Oct 2014 23:01:19 -0400 Subject: don't expose the vt100_color class --- t/init_test.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 't/init_test.py') diff --git a/t/init_test.py b/t/init_test.py index bc8084e..c4b8b48 100644 --- a/t/init_test.py +++ b/t/init_test.py @@ -24,10 +24,8 @@ class InitTest(VT100Test): assert self.vt.title() == "" assert self.vt.icon_name() == "" - color = self.vt.default_fgcolor() - assert color.color() is None - color = self.vt.default_bgcolor() - assert color.color() is None + assert self.vt.default_fgcolor() is None + assert self.vt.default_bgcolor() is None assert not self.vt.default_bold() assert not self.vt.default_italic() -- cgit v1.2.3-54-g00ecf