aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorsobolevn <mail@sobolevn.me>2024-08-20 10:31:20 +0300
committerLouis Pilfold <louis@lpil.uk>2024-08-24 13:07:53 +0100
commite57ea3d5b73f9143071941ec0da0b6c38de7d86a (patch)
tree913246f398b404d8f48efddef866454d19aad20f /test
parent7f348a800e676f753756712673aabc5dde66594d (diff)
downloadgleam_stdlib-e57ea3d5b73f9143071941ec0da0b6c38de7d86a.tar.gz
gleam_stdlib-e57ea3d5b73f9143071941ec0da0b6c38de7d86a.zip
Address review
Diffstat (limited to 'test')
-rw-r--r--test/gleam/bit_array_test.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/bit_array_test.gleam b/test/gleam/bit_array_test.gleam
index 1fa38c1..553a8db 100644
--- a/test/gleam/bit_array_test.gleam
+++ b/test/gleam/bit_array_test.gleam
@@ -338,7 +338,7 @@ pub fn compare_test() {
bit_array.compare(<<1, 2, 3>>, <<1, 2, 3>>)
|> should.equal(order.Eq)
- bit_array.compare(<<1, 2>>, <<1, 3>>)
+ bit_array.compare(<<1, 2>>, with: <<1, 3>>)
|> should.equal(order.Lt)
bit_array.compare(<<1, 3>>, <<1, 2>>)