aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinoas <mail@inoas.com>2022-08-10 21:27:30 +0200
committerLouis Pilfold <louis@lpil.uk>2022-08-11 09:56:08 +0100
commite7ddb5b5803d16a7511c4d3d471dd3305e88f311 (patch)
tree3e2be233fac9b3ddf54a8adf0a8fffcd38ebfb64
parent6cf891dff792d5685c6328aedae54693c92a61dc (diff)
downloadgleam_stdlib-e7ddb5b5803d16a7511c4d3d471dd3305e88f311.tar.gz
gleam_stdlib-e7ddb5b5803d16a7511c4d3d471dd3305e88f311.zip
simplify code
-rw-r--r--test/gleam/string_test.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/string_test.gleam b/test/gleam/string_test.gleam
index d817a35..614ae3c 100644
--- a/test/gleam/string_test.gleam
+++ b/test/gleam/string_test.gleam
@@ -794,7 +794,7 @@ if erlang {
pub fn improper_list_inspect_test() {
let list = improper_list_append(1, 2, 3)
- assert "//erl[1, 2 | 3] %% improper list" = string.inspect(list)
+ assert "//erl[1, 2 | 3]" = string.inspect(list)
}
// Warning: The type of this function is incorrect