We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ffe555 commit 402238eCopy full SHA for 402238e
tmuxp/testsuite/test_window.py
@@ -91,17 +91,13 @@ def test_newest_pane_data(self):
91
window = self.session.new_window(window_name='test', attach=True)
92
self.assertIsInstance(window, Window)
93
self.assertEqual(1, len(window.panes))
94
- window.select_layout()
95
window.split_window(attach=True)
96
97
98
self.assertEqual(2, len(window.panes))
99
# note: the below used to accept -h, removing because split_window now
100
# has attach as its only argument now
101
102
103
self.assertEqual(3, len(window.panes))
104
105
106
107
class NewTest3(TmuxTestCase):
0 commit comments