aboutsummaryrefslogtreecommitdiffstats
path: root/t/init_test.py
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-20 23:01:19 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-20 23:01:19 -0400
commit524af9b4236ec347e9e783e57a166ed3eb1c600b (patch)
treede71489307fe3e2cd64b950efc76add08c01afec /t/init_test.py
parent75f19a202404ca6bd05021592ba608fe51797fad (diff)
downloadlibvt100-python-524af9b4236ec347e9e783e57a166ed3eb1c600b.tar.gz
libvt100-python-524af9b4236ec347e9e783e57a166ed3eb1c600b.zip
don't expose the vt100_color class
Diffstat (limited to 't/init_test.py')
-rw-r--r--t/init_test.py6
1 files changed, 2 insertions, 4 deletions
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()