This commit is contained in:
Folkert 2023-07-26 22:53:15 +02:00
parent 644def72f1
commit f59eed6366
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
8 changed files with 107 additions and 33 deletions

View file

@ -360,11 +360,9 @@ macro_rules! assert_evals_to {
);
}
dbg!(&result);
match result.into_result() {
Ok(value) => transform(value),
Err((msg, _tag)) => panic!("roc_panic: {msg}"),
Err((msg, _tag)) => panic!("Roc failed with message: {msg}"),
}
}
};