@@ -94,13 +94,13 @@ def test_completion(self):
94
94
if config .supports_box_chars ():
95
95
screen = ['>>> an' ,
96
96
'┌───────────────────────┐' ,
97
- '│ and any( │' ,
97
+ '│ and armadillo │' ,
98
98
'└───────────────────────┘' ,
99
99
'Welcome to bpython! Press <F1> f' ]
100
100
else :
101
101
screen = ['>>> an' ,
102
102
'+-----------------------+' ,
103
- '| and any( |' ,
103
+ '| and armadillo |' ,
104
104
'+-----------------------+' ,
105
105
'Welcome to bpython! Press <F1> f' ]
106
106
self .assert_paint_ignoring_formatting (screen , (0 , 4 ))
@@ -533,7 +533,7 @@ def test_cursor_stays_at_bottom_of_screen(self):
533
533
self .assert_paint_ignoring_formatting (screen , (2 , 4 ))
534
534
535
535
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
537
537
and paren didn't unhighlight until enter"""
538
538
self .assertEqual (self .repl .rl_history .entries , ['' ])
539
539
self .enter ('(' )
@@ -555,7 +555,7 @@ def test_unhighlight_paren_bugs(self):
555
555
with output_to_repl (self .repl ):
556
556
self .repl .process_event (' ' )
557
557
screen = fsarray ([cyan (">>> " )+ yellow ('(' ),
558
- green ("... " )+ yellow (')' )+ bold (cyan (" " ))])
558
+ green ("... " )+ green (')' )+ bold (cyan (" " ))])
559
559
self .assert_paint (screen , (1 , 6 ))
560
560
561
561
def send_key (self , key ):
0 commit comments