diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/uri_test.gleam | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/gleam/uri_test.gleam b/test/gleam/uri_test.gleam index 2d2732a..267c0d4 100644 --- a/test/gleam/uri_test.gleam +++ b/test/gleam/uri_test.gleam @@ -345,7 +345,8 @@ const percent_codec_fixtures = [ #("?", "%3F"), #("'", "'"), #("(", "("), #(")", ")"), #("[", "%5B"), #("@", "%40"), #("/", "%2F"), #("\\", "%5C"), #("&", "%26"), #("#", "%23"), #("=", "%3D"), #("~", "~"), #("ñ", "%C3%B1"), #("-", "-"), #("_", "_"), - #(".", "."), #("*", "*"), #("100% great", "100%25%20great"), + #(".", "."), #("*", "*"), #("+", "+"), + #("100% great+fun", "100%25%20great+fun"), ] // Allowed chars |