diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-05-24 16:28:39 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-05-24 16:28:39 +0100 |
commit | b7363157df803c175b2f596fd96aa7e63c66e182 (patch) | |
tree | 9307d9246eb4912720669fe3e4315fbb54541868 /test | |
parent | b98705f890a2828c48dfdab291a22f145309d646 (diff) | |
download | gleam_stdlib-b7363157df803c175b2f596fd96aa7e63c66e182.tar.gz gleam_stdlib-b7363157df803c175b2f596fd96aa7e63c66e182.zip |
Update CI version
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/uri_test.gleam | 28 |
1 files changed, 5 insertions, 23 deletions
diff --git a/test/gleam/uri_test.gleam b/test/gleam/uri_test.gleam index 7de6fd5..506c246 100644 --- a/test/gleam/uri_test.gleam +++ b/test/gleam/uri_test.gleam @@ -341,29 +341,11 @@ pub fn empty_query_to_string_test() { } const percent_codec_fixtures = [ - #(" ", "%20"), - #(",", "%2C"), - #(";", "%3B"), - #(":", "%3A"), - #("!", "!"), - #("?", "%3F"), - #("'", "'"), - #("(", "("), - #(")", ")"), - #("[", "%5B"), - #("@", "%40"), - #("/", "%2F"), - #("\\", "%5C"), - #("&", "%26"), - #("#", "%23"), - #("=", "%3D"), - #("~", "~"), - #("ñ", "%C3%B1"), - #("-", "-"), - #("_", "_"), - #(".", "."), - #("*", "*"), - #("100% great", "100%25%20great"), + #(" ", "%20"), #(",", "%2C"), #(";", "%3B"), #(":", "%3A"), #("!", "!"), + #("?", "%3F"), #("'", "'"), #("(", "("), #(")", ")"), #("[", "%5B"), + #("@", "%40"), #("/", "%2F"), #("\\", "%5C"), #("&", "%26"), #("#", "%23"), + #("=", "%3D"), #("~", "~"), #("ñ", "%C3%B1"), #("-", "-"), #("_", "_"), + #(".", "."), #("*", "*"), #("100% great", "100%25%20great"), ] // Allowed chars |