diff options
author | Louis Pilfold <louis@lpil.uk> | 2020-03-29 14:54:06 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-03-29 14:54:22 +0100 |
commit | 7de6de494af9e85351d416a20bab5cd82749f935 (patch) | |
tree | 678cb18027551ea5474c2a0aa8c7a6857e2970bd /test | |
parent | 58c57cd4102a1748f5f40fa7dbb0e5dc2498d39f (diff) | |
download | gleam_stdlib-7de6de494af9e85351d416a20bab5cd82749f935.tar.gz gleam_stdlib-7de6de494af9e85351d416a20bab5cd82749f935.zip |
Correct invalid examples
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/int_test.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/int_test.gleam b/test/gleam/int_test.gleam index 267645b..27335d5 100644 --- a/test/gleam/int_test.gleam +++ b/test/gleam/int_test.gleam @@ -11,7 +11,7 @@ pub fn to_string() { |> int.to_string |> should.equal(_, "-123") - 0123 + 123 |> int.to_string |> should.equal(_, "123") } |