Skip to content

Commit 0e10015

Browse files
committed
chore: Temporarily use str until libtmux supports pathlib.Path
1 parent 02cfedd commit 0e10015

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ def test_load_workspace_passes_tmux_config(
9292
session = load_workspace(
9393
session_file,
9494
socket_name=server.socket_name,
95-
tmux_config_file=FIXTURE_PATH / "tmux" / "tmux.conf",
95+
tmux_config_file=str(FIXTURE_PATH / "tmux" / "tmux.conf"),
9696
detached=True,
9797
)
9898

9999
assert isinstance(session, Session)
100100
assert isinstance(session.server, Server)
101-
assert session.server.config_file == FIXTURE_PATH / "tmux" / "tmux.conf"
101+
assert session.server.config_file == str(FIXTURE_PATH / "tmux" / "tmux.conf")
102102

103103

104104
def test_load_workspace_named_session(

0 commit comments

Comments
 (0)