Use a more common terminal type.

This commit is contained in:
Andrew Hamilton 2016-10-26 14:09:05 +02:00
parent cff347ae77
commit 3cf7d52a63
16 changed files with 84 additions and 84 deletions

View file

@ -7,7 +7,7 @@ import os
import pickle
import unittest
os.environ["TERM"] = "st-256color"
os.environ["TERM"] = "xterm-256color"
from termstr import TermStr, CharStyle
import termstr
@ -55,7 +55,7 @@ class CharStyleTests(unittest.TestCase):
def test_code_for_term(self):
self.assertEqual(self.style.code_for_term(),
"\x1b[0m\x1b[38;2;255;255;255m\x1b[48;2;0;0;0m")
"\x1b(B\x1b[m\x1b[38;2;255;255;255m\x1b[48;2;0;0;0m")
class TermStrTests(unittest.TestCase):