Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.5.8
d36e29b27d550a5498b4dc35324fb24945271f55

# Scala Steward: Reformat with scalafmt 3.9.3
8534daf02cdd2df3e1fb0a269ef425eb13519a4e
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.6.1
version = 3.9.3
runner.dialect = scala213
continuationIndent.defnSite = 2
docstrings.style = Asterisk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,15 @@ class RerunnableBenchmarkSpec extends AnyFlatSpec with BeforeAndAfter {
before(benchmark.initPool())
after(benchmark.shutdownPool())

"The benchmark" should "correctly calculate the sum using futures" in {
"The benchmark" should "correctly calculate the sum using futures" in
assert(benchmark.sumIntsF === sum)
}

it should "correctly calculate the sum using futures and future pools" in {
it should "correctly calculate the sum using futures and future pools" in
assert(benchmark.sumIntsPF === sum)
}

it should "correctly calculate the sum using rerunnables" in {
it should "correctly calculate the sum using rerunnables" in
assert(benchmark.sumIntsR === sum)
}

it should "correctly calculate the sum using rerunnables and future pools" in {
it should "correctly calculate the sum using rerunnables and future pools" in
assert(benchmark.sumIntsPR === sum)
}
}
5 changes: 2 additions & 3 deletions project/FinaglePlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ object FinaglePlugin extends AutoPlugin {
.enablePlugins(NoPublishPlugin)
.settings(
libraryDependencies += module,
mimaCurrentClassfiles := {
(Compile / dependencyClasspath).value.seq.map(_.data).find(_.getName.startsWith(module.name)).get
},
mimaCurrentClassfiles :=
(Compile / dependencyClasspath).value.seq.map(_.data).find(_.getName.startsWith(module.name)).get,
mimaPreviousArtifacts := versions.tail.map { v =>
module.withRevision(v)
}.toSet
Expand Down
Loading