There was an error while loading. Please reload this page.
1 parent 17a7298 commit 8728994Copy full SHA for 8728994
1 file changed
tests/test_clink_codex_path_resolution.py
@@ -3,6 +3,7 @@
3
from __future__ import annotations
4
5
import asyncio
6
+import os
7
import stat
8
from pathlib import Path
9
@@ -68,4 +69,4 @@ async def fake_create_subprocess_exec(*args, **_kwargs):
68
69
assert captured["args"][0] == str(codex_path)
70
env = captured["env"]
71
assert env is not None
- assert str(nvm_bin) in env["PATH"].split(":")
72
+ assert str(nvm_bin) in env["PATH"].split(os.pathsep)
0 commit comments