We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d4a6bf commit 495ee92Copy full SHA for 495ee92
crates/tests/src/lib.rs
@@ -223,7 +223,7 @@ async fn command_substitution() {
223
.run()
224
.await;
225
TestBuilder::new()
226
- .command("$(sleep 0.1 && echo 1 && exit 5 &) ; echo 2")
+ .command("set +e\n$(sleep 0.1 && echo 1 && exit 5 &) ; echo 2")
227
.assert_stdout("2\n")
228
.assert_stderr("1: command not found\n")
229
0 commit comments