chore: fmt most of the acceptance tests

This commit is contained in:
rvcas
2023-02-09 00:57:14 -05:00
parent 3f540c7c99
commit 6f591c633d
13 changed files with 61 additions and 39 deletions

View File

@@ -18,11 +18,7 @@ pub fn insert(
AssocList { inner: do_insert(m.inner, k, v) }
}
fn do_insert(
elems: List<(key, value)>,
k: key,
v: value,
) -> List<(key, value)> {
fn do_insert(elems: List<(key, value)>, k: key, v: value) -> List<(key, value)> {
when elems is {
[] -> [(k, v)]
[(k2, v2), ..rest] ->