From 6ff4f5760bdab92fed9e533ae69b1f54a219618a Mon Sep 17 00:00:00 2001 From: Alejandro Serrano Mena Date: Mon, 4 Nov 2024 21:37:57 +0100 Subject: [PATCH] Fix test --- .../arrow-core/src/commonTest/kotlin/arrow/core/ListKTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-libs/core/arrow-core/src/commonTest/kotlin/arrow/core/ListKTest.kt b/arrow-libs/core/arrow-core/src/commonTest/kotlin/arrow/core/ListKTest.kt index 08ed5566c53..b6cc2a41754 100644 --- a/arrow-libs/core/arrow-core/src/commonTest/kotlin/arrow/core/ListKTest.kt +++ b/arrow-libs/core/arrow-core/src/commonTest/kotlin/arrow/core/ListKTest.kt @@ -13,7 +13,7 @@ import kotlin.test.Test class ListKTest { @Test fun monoidLaws() = - testLaws(MonoidLaws("List", emptyList(), List::plus, Arb.list(Arb.int()))) + testLaws(MonoidLaws("List", emptyList(), { x: List, y: List -> x + y }, Arb.list(Arb.int()))) @Test fun mapNotNullOk() = runTest { checkAll(Arb.list(Arb.int())) { listk ->