Skip to content

Commit e9801a0

Browse files
pretty test failures
1 parent 92e9b0b commit e9801a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bpython/test/test_curtsies_painting.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ def test_completion(self):
9494
if config.supports_box_chars():
9595
screen = ['>>> an',
9696
'┌───────────────────────┐',
97-
'│ and any( │',
97+
'│ and armadillo │',
9898
'└───────────────────────┘',
9999
'Welcome to bpython! Press <F1> f']
100100
else:
101101
screen = ['>>> an',
102102
'+-----------------------+',
103-
'| and any( |',
103+
'| and armadillo |',
104104
'+-----------------------+',
105105
'Welcome to bpython! Press <F1> f']
106106
self.assert_paint_ignoring_formatting(screen, (0, 4))
@@ -533,7 +533,7 @@ def test_cursor_stays_at_bottom_of_screen(self):
533533
self.assert_paint_ignoring_formatting(screen, (2, 4))
534534

535535
def test_unhighlight_paren_bugs(self):
536-
"""two previous bugs, paren did't highlight until next render
536+
"""two previous bugs, paren didn't highlight until next render
537537
and paren didn't unhighlight until enter"""
538538
self.assertEqual(self.repl.rl_history.entries, [''])
539539
self.enter('(')
@@ -555,7 +555,7 @@ def test_unhighlight_paren_bugs(self):
555555
with output_to_repl(self.repl):
556556
self.repl.process_event(' ')
557557
screen = fsarray([cyan(">>> ")+yellow('('),
558-
green("... ")+yellow(')')+bold(cyan(" "))])
558+
green("... ")+green(')')+bold(cyan(" "))])
559559
self.assert_paint(screen, (1, 6))
560560

561561
def send_key(self, key):

0 commit comments

Comments
 (0)