aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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>>)