diff options
author | Michael Mark <michael.mark@oit.edu> | 2024-05-24 20:37:23 -0700 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-05-29 12:26:22 +0100 |
commit | db67449953c847934025d7f82255bad78777d207 (patch) | |
tree | 89858deabd06800eb65a40fbf9e9863d13c4e3c6 /test | |
parent | c0e9a4838abd09cd9bca12c4ab80442973217ab4 (diff) | |
download | gleam_stdlib-db67449953c847934025d7f82255bad78777d207.tar.gz gleam_stdlib-db67449953c847934025d7f82255bad78777d207.zip |
gleam format
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/uri_test.gleam | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/test/gleam/uri_test.gleam b/test/gleam/uri_test.gleam index 506c246..7de6fd5 100644 --- a/test/gleam/uri_test.gleam +++ b/test/gleam/uri_test.gleam @@ -341,11 +341,29 @@ 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 |