From cfb67291ed8803346cd301165edaadd2b60de563 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 16 Jul 2018 11:08:22 +0100 Subject: [PATCH] Update WebTestClient integration test for path parameters table title change See gh-527 --- .../WebTestClientRestDocumentationIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-restdocs-webtestclient/src/test/java/org/springframework/restdocs/webtestclient/WebTestClientRestDocumentationIntegrationTests.java b/spring-restdocs-webtestclient/src/test/java/org/springframework/restdocs/webtestclient/WebTestClientRestDocumentationIntegrationTests.java index a4ed3b79..29c94c65 100644 --- a/spring-restdocs-webtestclient/src/test/java/org/springframework/restdocs/webtestclient/WebTestClientRestDocumentationIntegrationTests.java +++ b/spring-restdocs-webtestclient/src/test/java/org/springframework/restdocs/webtestclient/WebTestClientRestDocumentationIntegrationTests.java @@ -121,7 +121,7 @@ public class WebTestClientRestDocumentationIntegrationTests { new File("build/generated-snippets/path-parameters/path-parameters.adoc"), is(snippet(asciidoctor()).withContents( tableWithTitleAndHeader(TemplateFormats.asciidoctor(), - "/{foo}/{bar}", "Parameter", "Description") + "+/{foo}/{bar}+", "Parameter", "Description") .row("`foo`", "Foo description") .row("`bar`", "Bar description")))); }