-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
mediumCould be disruptive, but might not happenCould be disruptive, but might not happen
Description
The write_manifest function in tests/support/mod.rs (line 109) currently panics on write errors using .expect().
Current code:
.expect("write manifest content");Improvement needed:
- Refactor function to return a
Resulttype - Propagate errors instead of panicking
- Enable clearer diagnostics when manifest writing fails
This change would provide better error handling and make test failures more debuggable.
Backlinks:
- Original PR: Handle manifest path in process tests #56
- Discussion: Handle manifest path in process tests #56 (comment)
- Issue: Improve error handling in write_manifest test helper function #62
Requested by: @leynos
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
mediumCould be disruptive, but might not happenCould be disruptive, but might not happen