diff options
author | Richard Viney <richard.viney@gmail.com> | 2024-06-23 20:37:21 +1200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-06-25 15:25:23 +0100 |
commit | c8f1b520fc84e51aee59e4fa691bf63dcbf89bfc (patch) | |
tree | a27fabde89687286b6973dcab431a27643fb6724 /test | |
parent | 934f181d8943e639a8f8b2730b512bd972f36b5f (diff) | |
download | gleam_stdlib-c8f1b520fc84e51aee59e4fa691bf63dcbf89bfc.tar.gz gleam_stdlib-c8f1b520fc84e51aee59e4fa691bf63dcbf89bfc.zip |
Run CI on all supported runtimes
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/bit_array_test.gleam | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/gleam/bit_array_test.gleam b/test/gleam/bit_array_test.gleam index 6693752..d4f0eb8 100644 --- a/test/gleam/bit_array_test.gleam +++ b/test/gleam/bit_array_test.gleam @@ -191,6 +191,10 @@ pub fn base64_decode_test() { ")!" |> bit_array.base64_decode() |> should.equal(Error(Nil)) + + "=AAA" + |> bit_array.base64_decode() + |> should.equal(Error(Nil)) } pub fn base64_url_encode_test() { |