summaryrefslogtreecommitdiff
path: root/blessed/tests/test_wrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'blessed/tests/test_wrap.py')
-rw-r--r--blessed/tests/test_wrap.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/blessed/tests/test_wrap.py b/blessed/tests/test_wrap.py
index c253aa3..1e12060 100644
--- a/blessed/tests/test_wrap.py
+++ b/blessed/tests/test_wrap.py
@@ -68,7 +68,9 @@ def test_SequenceWrapper(all_terms, many_columns, kwargs):
# build a test paragraph, along with a very colorful version
t = TestTerminal()
pgraph = u' '.join((
- 'a', 'bc', 'vwxyz123456789ABCDEFGHIJKLMN ')) * 2
+ 'a', 'bc', 'def', 'ghij', 'klmno', 'pqrstu', 'vwxyz012',
+ '34567890A', 'BCDEFGHIJK', 'LMNOPQRSTUV', 'WXYZabcdefgh',
+ 'ijklmnopqrstu', 'vwxyz123456789', '0ABCDEFGHIJKLMN '))
pgraph_colored = u''.join([
t.color(idx % 7)(char) if char != ' ' else ' '