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 ->