Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.4
04a1b83fdfbff3263fa3ed6d95ca30daf54b2113
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.8.3
version = 3.8.4
maxColumn = 100
continuationIndent.callSite = 2
newlines.sometimesBeforeColonInMethodReturnType = false
Expand Down
4 changes: 2 additions & 2 deletions core/src/test/scala/org/typelevel/keypool/KeyPoolSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class KeyPoolSpec extends CatsEffectSuite {
.withIdleTimeAllowedInPool(Duration.Inf)
.withMaxPerKey(Function.const(10))
.withMaxTotal(10)
.withOnReaperException({ (_: Throwable) => IO.unit })
.withOnReaperException((_: Throwable) => IO.unit)
.build
.use(k =>
k.take(1)
Expand All @@ -60,7 +60,7 @@ class KeyPoolSpec extends CatsEffectSuite {
.withIdleTimeAllowedInPool(Duration.Inf)
.withMaxPerKey(Function.const(10))
.withMaxTotal(10)
.withOnReaperException({ (_: Throwable) => IO.unit })
.withOnReaperException((_: Throwable) => IO.unit)
.build
.use(k =>
k.take(1)
Expand Down
4 changes: 2 additions & 2 deletions core/src/test/scala/org/typelevel/keypool/PoolSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class PoolSpec extends CatsEffectSuite {
.withDefaultReuseState(Reusable.Reuse)
.withIdleTimeAllowedInPool(Duration.Inf)
.withMaxTotal(10)
.withOnReaperException({ (_: Throwable) => IO.unit })
.withOnReaperException((_: Throwable) => IO.unit)
.build
.use(pool =>
pool.take
Expand All @@ -58,7 +58,7 @@ class PoolSpec extends CatsEffectSuite {
.withDefaultReuseState(Reusable.DontReuse)
.withIdleTimeAllowedInPool(Duration.Inf)
.withMaxTotal(10)
.withOnReaperException({ (_: Throwable) => IO.unit })
.withOnReaperException((_: Throwable) => IO.unit)
.build
.use(pool =>
pool.take
Expand Down
Loading