Skip to content

Commit

Permalink
NOJIRA: Updating play-frontend-hmrc and bootstrap-play dependencies, …
Browse files Browse the repository at this point in the history
…corrected ambiguous match in page title unit tests (#128)
  • Loading branch information
JoPintoPaul committed Mar 13, 2024
1 parent e43a7c2 commit 3639983
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions project/AppDependencies.scala
Expand Up @@ -2,8 +2,8 @@ import sbt._

object AppDependencies {

private val bootstrapVersion = "8.1.0"
private val frontendVersion = "8.5.0"
private val bootstrapVersion = "8.5.0"
private val frontendVersion = "9.0.0"
private val playVersion = "play-30"

val compile = Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Expand Up @@ -7,7 +7,7 @@ resolvers += Resolver.typesafeRepo("releases")

addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "3.20.0")
addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "2.5.0")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.0")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.0")
addSbtPlugin("uk.gov.hmrc" % "sbt-accessibility-linter" % "0.39.0")
Expand Down
2 changes: 1 addition & 1 deletion test/unit/views/OnlineServicesTermsPageSpec.scala
Expand Up @@ -48,7 +48,7 @@ class OnlineServicesTermsPageSpec

"Online Services Terms and conditions" must {
"have a title of 'HMRC Online Services Terms & Conditions – GOV.UK'" in new Fixture {
view.select("title").text mustBe "HMRC Online Services Terms & Conditions – GOV.UK"
view.select("title").first().text mustBe "HMRC Online Services Terms & Conditions – GOV.UK"
}

"have a heading of 'HMRC Online Services Terms & Conditions'" in new Fixture {
Expand Down

0 comments on commit 3639983

Please sign in to comment.