aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/gleam/function_test.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gleam/function_test.gleam b/test/gleam/function_test.gleam
index 1495d2a..27e8b0d 100644
--- a/test/gleam/function_test.gleam
+++ b/test/gleam/function_test.gleam
@@ -109,7 +109,7 @@ pub fn identity_test() {
|> should.equal(#(1, 2.0))
}
-pub fn always_test() {
+pub fn constant_test() {
#(1, 2)
|> pair.map_first(function.constant(42))
|> should.equal(#(42, 2))