Skip to content

Commit 7acf007

Browse files
committed
chore(tests[legacy_pane]): pydocstyle manual fixes
1 parent 6e1d27e commit 7acf007

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/legacy_api/test_pane.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def test_resize_pane(session: Session) -> None:
2626

2727

2828
def test_send_keys(session: Session) -> None:
29+
"""Verify Pane.send_keys()."""
2930
pane = session.attached_window.attached_pane
3031
assert pane is not None
3132
pane.send_keys("c-c", literal=True)
@@ -38,6 +39,7 @@ def test_send_keys(session: Session) -> None:
3839

3940

4041
def test_set_height(session: Session) -> None:
42+
"""Verify Pane.set_height()."""
4143
window = session.new_window(window_name="test_set_height")
4244
window.split_window()
4345
pane1 = window.attached_pane
@@ -50,6 +52,7 @@ def test_set_height(session: Session) -> None:
5052

5153

5254
def test_set_width(session: Session) -> None:
55+
"""Verify Pane.set_width()."""
5356
window = session.new_window(window_name="test_set_width")
5457
window.split_window()
5558

@@ -66,6 +69,7 @@ def test_set_width(session: Session) -> None:
6669

6770

6871
def test_capture_pane(session: Session) -> None:
72+
"""Verify Pane.capture_pane()."""
6973
env = shutil.which("env")
7074
assert env is not None, "Cannot find usable `env` in PATH."
7175

0 commit comments

Comments
 (0)