Skip to content

Commit 35b77eb

Browse files
committed
fixed TC path
1 parent 01029db commit 35b77eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def test_write_rst_invalid_json(tmp_path: Path) -> None:
267267
)
268268
def test_write_rst_negative(json_objs: list[dict], output_lines, tmp_path) -> None:
269269
to_dump = {"project_1": json_objs}
270-
jsonpath = Path("invalid_objs.json")
270+
jsonpath = tmp_path / "invalid_objs.json"
271271
with jsonpath.open("w") as f:
272272
json.dump(to_dump, f)
273273
outpath = tmp_path / "needextend.rst"

0 commit comments

Comments
 (0)