Skip to content

Commit c4b330d

Browse files
committed
Bump scalafix to 0.11.0
This update also bumps scalatest to 3.2.x, which includes renaming traits. see also: https://www.scalatest.org/release_notes/3.2.0
1 parent 244acc5 commit c4b330d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
2-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4")
2+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.0")

tests/src/test/scala/fix/RuleSuite.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package fix
22

33
import scala.reflect.ensureAccessible
4-
import org.scalatest.{ ConfigMap, FunSpecLike }
4+
import org.scalatest.ConfigMap
5+
import org.scalatest.funspec.AnyFunSpecLike
56
import scalafix.testkit.AbstractSemanticRuleSuite
67

7-
class RuleSuite extends AbstractSemanticRuleSuite with FunSpecLike with BeforeAndAfterAllConfigMapAlt {
8+
class RuleSuite extends AbstractSemanticRuleSuite with AnyFunSpecLike with BeforeAndAfterAllConfigMapAlt {
89
val isSaveExpectField = ensureAccessible(classOf[AbstractSemanticRuleSuite].getDeclaredField("isSaveExpect"))
910

1011
// If you invoke the test as "tests/testOnly -- -Doverwrite=true" it will save the expected

0 commit comments

Comments
 (0)