Skip to content

Commit f8d741f

Browse files
committed
Fix test
1 parent fc19835 commit f8d741f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/shared/src/test/scala/cats/tests/ListSuite.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class ListSuite extends CatsSuite {
9090
assert(
9191
(fa.groupByNelMap(f, g).map { case (k, v) => (k, v.toList) }: Map[Int, List[Int]]) === fa
9292
.groupBy(f)
93-
.mapValues(_.map(g))
93+
.map { case (k, v) => (k, v.map(g)) }
9494
)
9595
}
9696
)

0 commit comments

Comments
 (0)