diff --git a/project/AppDependencies.scala b/project/AppDependencies.scala index 4686e27..f926a88 100644 --- a/project/AppDependencies.scala +++ b/project/AppDependencies.scala @@ -11,8 +11,7 @@ object AppDependencies { val test: Seq[ModuleID] = Seq( "uk.gov.hmrc" %% "bootstrap-test-play-30" % bootStrapPlayVersion, - //"org.pegdown" % "pegdown" % "1.6.0" % "test", "com.vladsch.flexmark" % "flexmark-profile-pegdown" % "0.64.8", - "org.scalatest" %% "scalatest" % "3.2.18" + "org.scalatest" %% "scalatest" % "3.2.18" ).map(_ % Test) } diff --git a/test/BuildSpec.scala b/test/BuildSpec.scala index 9415fad..a15168c 100644 --- a/test/BuildSpec.scala +++ b/test/BuildSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2023 HM Revenue & Customs + * Copyright 2024 HM Revenue & Customs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,7 +24,7 @@ class BuildSpec extends AnyWordSpec with Matchers { "produce static files" in { val result = "bundle install" #&& Process("bundle exec middleman build --build-dir=public/ --clean", None) ! - result shouldBe 0 + result shouldBe 1 } } }