Convenience helper to keep builder error assertions focused on the specific missing or invalid input under test.
(builder: FileStreamBuilder<'_>)
| 364 | /// Convenience helper to keep builder error assertions focused on the |
| 365 | /// specific missing or invalid input under test. |
| 366 | fn builder_error(builder: FileStreamBuilder<'_>) -> String { |
| 367 | builder.build().err().unwrap().to_string() |
| 368 | } |
| 369 | |
| 370 | #[tokio::test] |
| 371 | async fn on_error_opening() -> Result<()> { |
searching dependent graphs…