Skip to content

Commit 402238e

Browse files
committed
fix bad test with blank select_layout calls
1 parent 4ffe555 commit 402238e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tmuxp/testsuite/test_window.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,13 @@ def test_newest_pane_data(self):
9191
window = self.session.new_window(window_name='test', attach=True)
9292
self.assertIsInstance(window, Window)
9393
self.assertEqual(1, len(window.panes))
94-
window.select_layout()
9594
window.split_window(attach=True)
96-
window.select_layout()
9795

9896
self.assertEqual(2, len(window.panes))
9997
# note: the below used to accept -h, removing because split_window now
10098
# has attach as its only argument now
101-
window.select_layout()
10299
window.split_window(attach=True)
103100
self.assertEqual(3, len(window.panes))
104-
window.select_layout()
105101

106102

107103
class NewTest3(TmuxTestCase):

0 commit comments

Comments
 (0)