@@ -570,8 +570,10 @@ def test_up_down_arrow_with_completion_menu(self):
570
570
# so we should end up where we were when we initiated tab completion.
571
571
output = multiline_input (reader , namespace )
572
572
self .assertEqual (output , "os." )
573
+ # TODO: The menu should be visible, but currently isn't?
574
+ # self.assertEqual(reader.cmpltn_menu_visible, True)
573
575
574
- # TODO: This test doesn't seem to work as intended, it always succeeds
576
+ # TODO: This test doesn't seem to work as intended.
575
577
def test_right_down_arrows_with_completion_menu (self ):
576
578
"""Right / Down arrows while the tab completion menu is displayed
577
579
should do nothing"""
@@ -592,8 +594,9 @@ def test_right_down_arrows_with_completion_menu(self):
592
594
# When we press right and/or down arrow while
593
595
# the completions menu is displayed,
594
596
# the cursor should stay where it was on the line.
595
- self .assertEqual (reader .cmpltn_menu_vis , 1 )
596
597
self .assertEqual (reader .cxy , (6 , 0 ))
598
+ # TODO: The menu should be visible, but currently isn't?
599
+ # self.assertEqual(reader.cmpltn_menu_visible, True)
597
600
598
601
@patch ("_pyrepl.readline._ReadlineWrapper.get_reader" )
599
602
@patch ("sys.stderr" , new_callable = io .StringIO )
0 commit comments