Skip to content

Commit

Permalink
Upgrade scalatest to 2.2.6
Browse files Browse the repository at this point in the history
Includes scalatestplus upgrade too. This should fix a parallel test issue: scalatest/scalatest#432
  • Loading branch information
rich-nguyen committed Jan 19, 2016
1 parent 7b61d92 commit 84126c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ object Dependencies {
val romeModules = "org.rometools" % "rome-modules" % "1.0"
val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.11.5" % "test"
val scalajTime = "org.scalaj" % "scalaj-time_2.10.2" % "0.7"
val scalaTest = "org.scalatest" %% "scalatest" % "2.2.5" % Test
val scalaTest = "org.scalatest" %% "scalatest" % "2.2.6" % Test
val scalaTestPlus = "org.scalatestplus" %% "play" % "1.4.0" % Test
val scalaz = "org.scalaz" %% "scalaz-core" % "7.0.6"
val scalaUri = "com.netaporter" % "scala-uri_2.11" % "0.4.11"
val seeGuice = "com.tzavellas" % "sse-guice" % "0.7.1"
Expand All @@ -64,7 +65,6 @@ object Dependencies {
val slf4jExt = "org.slf4j" % "slf4j-ext" % slf4jVersion
val snappyJava = "org.xerial.snappy" % "snappy-java" % "1.0.5.1"
val uaDetectorResources = "net.sf.uadetector" % "uadetector-resources" % "2013.04"
val scalaTestPlus = "org.scalatestplus" %% "play" % "1.4.0-M3" % "test"
val anormModule = "com.typesafe.play" %% "anorm" % "2.4.0"
val jerseyCore = "com.sun.jersey" % "jersey-core" % "1.19"
val jerseyClient = "com.sun.jersey" % "jersey-client" % "1.19"
Expand Down
1 change: 0 additions & 1 deletion project/Frontend.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ object Frontend extends Build with Prototypes {
romeModules,
scalaCheck,
scalajTime,
scalaTestPlus,
scalaz,
shadeMemcached,
snappyJava,
Expand Down
2 changes: 2 additions & 0 deletions project/Prototypes.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ trait Prototypes {
testOptions in Test += Tests.Argument("-oDF"),
resolvers ++= Seq(Resolver.typesafeRepo("releases")),
libraryDependencies ++= Seq(
scalaTest,
scalaTestPlus,
seleniumJava % Test,
jodaTime % Test,
Expand Down Expand Up @@ -91,6 +92,7 @@ trait Prototypes {

libraryDependencies ++= Seq(
scalaTest,
scalaTestPlus,
mockito
),

Expand Down

0 comments on commit 84126c5

Please sign in to comment.