File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
modules/core/src/test/scala/org/scalasteward/core Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1- version = 3.5 .3
1+ version = 3.5 .8
22runner.dialect = scala213
33assumeStandardLibraryStripMargin = true
44align.openParenCallSite = false
Original file line number Diff line number Diff line change @@ -92,11 +92,15 @@ object TestInstances {
9292 }
9393
9494 implicit val versionCogen : Cogen [Version ] =
95- Cogen (_.alnumComponents.map {
96- case n : Version .Component .Numeric => n.toBigInt.toLong
97- case a : Version .Component .Alpha => a.order.toLong
98- case _ => 0L
99- }.sum)
95+ Cogen (
96+ _.alnumComponents
97+ .map {
98+ case n : Version .Component .Numeric => n.toBigInt.toLong
99+ case a : Version .Component .Alpha => a.order.toLong
100+ case _ => 0L
101+ }
102+ .sum
103+ )
100104
101105 // repoconfig instances
102106
You can’t perform that action at this time.
0 commit comments