mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-24 20:42:29 +00:00
Use closure syntax in parentheses in False.roc
This commit is contained in:
parent
1753c9cf5b
commit
cdbdfeeaa4
2 changed files with 22 additions and 12 deletions
|
@ -129,7 +129,12 @@ mod cli_run {
|
|||
panic!("`roc` command had unexpected stderr: {}", stderr);
|
||||
}
|
||||
|
||||
assert!(compile_out.status.success(), "bad status {:?}", compile_out);
|
||||
assert!(
|
||||
compile_out.status.success(),
|
||||
"bad status stderr:\n{}\nstdout:\n{}",
|
||||
compile_out.stderr,
|
||||
compile_out.stdout
|
||||
);
|
||||
|
||||
compile_out
|
||||
}
|
||||
|
@ -798,7 +803,12 @@ mod cli_run {
|
|||
&[],
|
||||
);
|
||||
|
||||
assert!(compile_out.status.success(), "bad status {:?}", compile_out);
|
||||
assert!(
|
||||
compile_out.status.success(),
|
||||
"bad status stderr:\n{}\nstdout:\n{}",
|
||||
compile_out.stderr,
|
||||
compile_out.stdout
|
||||
);
|
||||
|
||||
let mut path = file.with_file_name(executable_filename);
|
||||
path.set_extension("wasm");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue