mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
Fix clippy error
This commit is contained in:
parent
9c614540a4
commit
088193c93b
1 changed files with 1 additions and 1 deletions
|
@ -735,7 +735,7 @@ mod test_can {
|
|||
fn assert_apply_call(expr: &Expr, expected: &str, interns: &roc_module::symbol::Interns) {
|
||||
match simplify_curried_call(expr) {
|
||||
(Var(sym, _), Str(val)) => {
|
||||
assert_eq!(sym.as_str(&interns), "apply");
|
||||
assert_eq!(sym.as_str(interns), "apply");
|
||||
assert_eq!(val.to_string(), expected);
|
||||
}
|
||||
call => panic!("Not a valid (get {}) call: {:?}", expected, call),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue