tests(gleam): fix assert tests that no longer parse correctly

This commit is contained in:
Christian Clason 2025-05-01 10:37:30 +02:00
parent a83f2d1417
commit 75ee7ff2f0
5 changed files with 11 additions and 10 deletions

View file

@ -1,4 +1,4 @@
pub fn main() {
assert Ok(i) =
assert Ok(i) ==
parse_int("123")
}