@@ -24,22 +24,22 @@ def test_resize_pane(self):
2424 pane1_height = pane1 ['pane_height' ]
2525 pane2 = window .split_window ()
2626
27- pane1 .resize_pane (height = 17 )
27+ pane1 .resize_pane (height = 7 )
2828 self .assertNotEqual (pane1 ['pane_height' ], pane1_height )
29- self .assertEqual (int (pane1 ['pane_height' ]), 17 )
29+ self .assertEqual (int (pane1 ['pane_height' ]), 7 )
3030
31- pane1 .resize_pane (height = 10 )
32- self .assertEqual (int (pane1 ['pane_height' ]), 10 )
31+ pane1 .resize_pane (height = 9 )
32+ self .assertEqual (int (pane1 ['pane_height' ]), 9 )
3333
3434 def test_set_height (self ):
3535 window = self .session .new_window (window_name = 'test_set_height' )
3636 pane2 = window .split_window ()
3737 pane1 = window .attached_pane ()
3838 pane1_height = pane1 ['pane_height' ]
3939
40- pane1 .set_height (20 )
40+ pane1 .set_height (12 )
4141 self .assertNotEqual (pane1 ['pane_height' ], pane1_height )
42- self .assertEqual (int (pane1 ['pane_height' ]), 20 )
42+ self .assertEqual (int (pane1 ['pane_height' ]), 12 )
4343
4444 def test_set_width (self ):
4545 window = self .session .new_window (window_name = 'test_set_width' )
0 commit comments