diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-26 13:33:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 13:33:38 -0400 |
commit | d0c5ff42f4b5fa9b848e6ed5af2e480d12f15bda (patch) | |
tree | b15c419342dc422798b55fdeb9ee3b48cf055f82 /test_util/src/builders.rs | |
parent | a11681a9b02f2f4a0f2bf6945a44b2937c6a9af1 (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.rs | 2 |
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(); |