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
2
2
runner.dialect = scala213
3
3
assumeStandardLibraryStripMargin = true
4
4
align.openParenCallSite = false
Original file line number Diff line number Diff line change @@ -92,11 +92,15 @@ object TestInstances {
92
92
}
93
93
94
94
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
+ )
100
104
101
105
// repoconfig instances
102
106
You can’t perform that action at this time.
0 commit comments