diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/string_test.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/string_test.gleam b/test/gleam/string_test.gleam index acc00d7..8dff65e 100644 --- a/test/gleam/string_test.gleam +++ b/test/gleam/string_test.gleam @@ -795,7 +795,7 @@ if erlang { pub fn improper_list_inspect_test() { let list = improper_list_append(1, 2) - assert "[1, ...2]" = string.inspect(list) + assert "[1, ..2]" = string.inspect(list) } // Warning: The type of this function is incorrect |