Skip to content

Commit b91a7f3

Browse files
authored
Merge pull request #576 from typelevel/update/scalafmt-core-3.7.0
Update scalafmt-core to 3.7.0
2 parents 5e34f6c + b184a87 commit b91a7f3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Scala Steward: Reformat with scalafmt 3.7.0
2+
7b8d41436a8043f699f5e58bead035768a5a0edd

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.6.1
1+
version = 3.7.0
22
align.openParenCallSite = true
33
align.openParenDefnSite = true
44
maxColumn = 120

tests/src/test/scala/cats/collections/BitSetTest.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ object BitSetTest extends Properties("BitSet") {
199199
property("(x | y)(z) == x(z) || y(z)") = forAll { (x: BitSet, y: BitSet, z: Int) =>
200200
// do apply first in case we mutate erroneously
201201
def law(z: Int): Boolean =
202-
(x(z) || y(z)) == (x | y) (z)
202+
(x(z) || y(z)) == (x | y)(z)
203203

204204
law(z) && x.iterator.forall(law) && y.iterator.forall(law)
205205
}
@@ -224,7 +224,7 @@ object BitSetTest extends Properties("BitSet") {
224224
property("(x & y)(z) == x(z) && y(z)") = forAll { (x: BitSet, y: BitSet, z: Int) =>
225225
// do apply first in case we mutate erroneously
226226
def law(z: Int): Boolean =
227-
(x(z) && y(z)) == (x & y) (z)
227+
(x(z) && y(z)) == (x & y)(z)
228228

229229
law(z) && x.iterator.forall(law) && y.iterator.forall(law)
230230
}

0 commit comments

Comments
 (0)