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 de1c519 commit 066f0c1Copy full SHA for 066f0c1
tests/test_options.py
@@ -393,7 +393,7 @@ def test_option_dataclass_fixture(
393
TEST_FIXTURES,
394
ids=[test.test_id for test in TEST_FIXTURES],
395
)
396
-def test_options_pane_fixture(
+def test_show_option_pane_fixture(
397
monkeypatch: pytest.MonkeyPatch,
398
test_id: str,
399
option_data: t.List[str],
@@ -409,4 +409,6 @@ def test_options_pane_fixture(
409
410
monkeypatch.setattr(pane, "cmd", fake_cmd(stdout=option_data))
411
412
- assert TmuxArray(expected) in pane.show_option("terminal-features")
+ assert pane.show_option(tmux_option) == expected
413
+ for k, v in expected.items():
414
+ assert pane.show_option(tmux_option)[k] == v
0 commit comments