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

@@ -13,6 +13,6 @@ pub fn drop(bytes: ByteArray, n: Int) -> ByteArray {
}
test drop_1() {
let x = #[1, 2, 3, 4, 5, 6, 7]
drop(x, 2) == #[3, 4, 5, 6, 7]
let x = #"01020304050607"
drop(x, 2) == #"0304050607"
}