Skip to content

Commit d985546

Browse files
committed
Update scalatest to 3.1.0
1 parent 4464561 commit d985546

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

shared/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
libraryDependencies += "org.scalatest" %%% "scalatest" % "3.0.8" % Test
1+
libraryDependencies += "org.scalatest" %%% "scalatest" % "3.1.0" % Test

shared/src/test/scala/com/thoughtworks/ExtractorSpec.scala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
package com.thoughtworks
22

3-
import org.scalatest.{FreeSpec, Inside, Matchers}
3+
import org.scalatest.Inside
44
import Extractor._
5+
import org.scalatest.freespec.AnyFreeSpec
6+
import org.scalatest.matchers.should.Matchers
57

68
/**
79
* @author 杨博 (Yang Bo) <pop.atry@gmail.com>
810
*/
9-
class ExtractorSpec extends FreeSpec with Matchers with Inside {
11+
class ExtractorSpec extends AnyFreeSpec with Matchers with Inside {
1012

1113
"PartialFunction toExtractor" in {
1214

0 commit comments

Comments
 (0)