summaryrefslogtreecommitdiff
path: root/test_util/src/builders.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-05-26 13:33:38 -0400
committerGitHub <noreply@github.com>2023-05-26 13:33:38 -0400
commitd0c5ff42f4b5fa9b848e6ed5af2e480d12f15bda (patch)
treeb15c419342dc422798b55fdeb9ee3b48cf055f82 /test_util/src/builders.rs
parenta11681a9b02f2f4a0f2bf6945a44b2937c6a9af1 (diff)
fix(compile): implicit read permission to npm vfs (#19281)
Closes #19280
Diffstat (limited to 'test_util/src/builders.rs')
-rw-r--r--test_util/src/builders.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/src/builders.rs b/test_util/src/builders.rs
index 33a1a98f0..a000e5bcd 100644
--- a/test_util/src/builders.rs
+++ b/test_util/src/builders.rs
@@ -394,7 +394,7 @@ impl TestCommandBuilder {
(Some(combined_reader), None)
};
- let mut process = command.spawn().unwrap();
+ let mut process = command.spawn().expect("Failed spawning command");
if let Some(input) = &self.stdin {
let mut p_stdin = process.stdin.take().unwrap();