Skip to content

Commit d62b222

Browse files
committed
test: avoid /tmp literal in prompt-serialization fixture
SonarCloud S5443 flags the /tmp path string even though the test never creates the file; use a neutral path. Signed-off-by: Sebastian Mendel <info@sebastianmendel.de>
1 parent d8d3a7c commit d62b222

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_reconcile_venv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def fake_input():
125125

126126
inst = Installation(
127127
tool="faketool", version="1.0", method="uv",
128-
path="/tmp/faketool", active=False, valid=True,
128+
path="/opt/faketool", active=False, valid=True,
129129
)
130130

131131
def worker():

0 commit comments

Comments
 (0)