Skip to content

Commit d4325bc

Browse files
Update scalafmt-core to 3.5.8 (#13)
* Update scalafmt-core to 3.5.8 * Reformat with scalafmt 3.5.8 Executed command: scalafmt --non-interactive * Add 'Reformat with scalafmt 3.5.8' to .git-blame-ignore-revs
1 parent c439c57 commit d4325bc

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.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.5.8
2+
af0d992acdc6d49705be09ede6f08fdf03455c02

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.1.2
1+
version = 3.5.8
22
runner.dialect = Scala213
33
align {
44
preset = more

src/test/scala/com/stuart/zcaffeine/RemovalListenerSpec.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ object RemovalListenerSpec extends ZIOSpecDefault {
1616
.enableScheduling()
1717
.removalListener((key, _, _) => evictedKeys.update(key :: _))
1818
.build()
19-
_ <- cache.put("foo", ZIO.succeed(1))
20-
_ <- cache.put("bar", ZIO.succeed(3))
21-
_ <- cache.invalidateAll
22-
_ <- TestClock.adjust(1.second) // Waits for the scheduler to run maintenance
19+
_ <- cache.put("foo", ZIO.succeed(1))
20+
_ <- cache.put("bar", ZIO.succeed(3))
21+
_ <- cache.invalidateAll
22+
_ <- TestClock.adjust(1.second) // Waits for the scheduler to run maintenance
2323
keys <- evictedKeys.get
2424
} yield assert(keys)(hasSameElements(List("foo", "bar")))
2525
}

0 commit comments

Comments
 (0)