From 81c7dc61ecfdabd5980a651f996e3859a24390d3 Mon Sep 17 00:00:00 2001 From: Darren Walker Date: Fri, 23 Nov 2018 15:20:02 +0000 Subject: [PATCH] APIS-3710 Fix broken build. --- .../acceptance/uk/gov/hmrc/apidocumentation/pages/Service.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/acceptance/uk/gov/hmrc/apidocumentation/pages/Service.scala b/test/acceptance/uk/gov/hmrc/apidocumentation/pages/Service.scala index 8f435022..c55496a2 100644 --- a/test/acceptance/uk/gov/hmrc/apidocumentation/pages/Service.scala +++ b/test/acceptance/uk/gov/hmrc/apidocumentation/pages/Service.scala @@ -73,7 +73,7 @@ object HelloWorldPage extends WebPage with TableDrivenPropertyChecks { forAll(endpoints) { (id: String, endpointTitle: String, endpointRequestType: String, endpointUri: String) => cssSelector(s"${id}_get_accordion .accordion__button").element.text shouldBe endpointTitle cssSelector(s"${id}_get_accordion .http-verb.http-verb--get.float--right").element.text shouldBe endpointRequestType - cssSelector(s"${id}_get_accordion .snippet--inline").element.text shouldBe endpointUri + cssSelector(s"${id}_get_accordion .code--slim").element.text shouldBe endpointUri } }