mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
Print as debug
This commit is contained in:
parent
25f58a74cc
commit
b1f076e334
1 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ impl TestCase {
|
|||
match opt.trim() {
|
||||
"allow_errors" => infer_opts.allow_errors = true,
|
||||
"print_only_under_alias" => infer_opts.print_only_under_alias = true,
|
||||
other => return Err(format!("unknown infer option: {other}").into()),
|
||||
other => return Err(format!("unknown infer option: {other:?}").into()),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -154,7 +154,7 @@ impl TestCase {
|
|||
let opt = infer_opt.name("opt").unwrap().as_str();
|
||||
match opt.trim() {
|
||||
"can_decls" => print_opts.can_decls = true,
|
||||
other => return Err(format!("unknown print option: {other}").into()),
|
||||
other => return Err(format!("unknown print option: {other:?}").into()),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue