Skip to content

Commit b736315

Browse files
committed
Update CI version
1 parent b98705f commit b736315

File tree

2 files changed

+6
-24
lines changed

2 files changed

+6
-24
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: erlef/setup-beam@v1
1616
with:
1717
otp-version: "26.0.2"
18-
gleam-version: "1.1.0"
18+
gleam-version: "1.2.0"
1919
- uses: actions/setup-node@v3
2020
with:
2121
node-version: "16.18.1"

test/gleam/uri_test.gleam

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -341,29 +341,11 @@ pub fn empty_query_to_string_test() {
341341
}
342342

343343
const percent_codec_fixtures = [
344-
#(" ", "%20"),
345-
#(",", "%2C"),
346-
#(";", "%3B"),
347-
#(":", "%3A"),
348-
#("!", "!"),
349-
#("?", "%3F"),
350-
#("'", "'"),
351-
#("(", "("),
352-
#(")", ")"),
353-
#("[", "%5B"),
354-
#("@", "%40"),
355-
#("/", "%2F"),
356-
#("\\", "%5C"),
357-
#("&", "%26"),
358-
#("#", "%23"),
359-
#("=", "%3D"),
360-
#("~", "~"),
361-
#("ñ", "%C3%B1"),
362-
#("-", "-"),
363-
#("_", "_"),
364-
#(".", "."),
365-
#("*", "*"),
366-
#("100% great", "100%25%20great"),
344+
#(" ", "%20"), #(",", "%2C"), #(";", "%3B"), #(":", "%3A"), #("!", "!"),
345+
#("?", "%3F"), #("'", "'"), #("(", "("), #(")", ")"), #("[", "%5B"),
346+
#("@", "%40"), #("/", "%2F"), #("\\", "%5C"), #("&", "%26"), #("#", "%23"),
347+
#("=", "%3D"), #("~", "~"), #("ñ", "%C3%B1"), #("-", "-"), #("_", "_"),
348+
#(".", "."), #("*", "*"), #("100% great", "100%25%20great"),
367349
]
368350

369351
// Allowed chars

0 commit comments

Comments
 (0)