Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ object SourceTests212 extends TestSuite {
// Some aliases the make our code shorter
import scalaz.==>>
implicit val scalazOrder: scalaz.Order[Int] = scalaz.Order.fromScalaOrdering(Ordering[Int])
implicit val scalazShow: scalaz.Show[Int] = scalaz.Show.show[Int](_.toString)
implicit val scalazShow: scalaz.Show[Int] = scalaz.Show.show[Int](n => scalaz.Cord(n.toString))
type I = Int
test("empty") - check(load(==>>.empty[I, I] _), "Map.scala", "final def empty")
test("singleton") - check(load(==>>.singleton[I, I] _), "Map.scala", "final def singleton")
Expand Down
2 changes: 1 addition & 1 deletion build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ object Deps {
else "2.0.1"
mvn"org.scala-lang.modules::scala-xml:$ver"
}
val scalazCore = mvn"org.scalaz::scalaz-core:7.2.36"
val scalazCore = mvn"org.scalaz::scalaz-core:7.3.8"
val semanticDbScalac = mvn"org.scalameta:::semanticdb-scalac:$scalametaVersion"
val shapeless = mvn"com.chuusai::shapeless:2.3.3"
val slf4jNop = mvn"org.slf4j:slf4j-nop:2.0.16"
Expand Down
Loading