From b8c67345808117c4a74a78c955441b515eae1912 Mon Sep 17 00:00:00 2001 From: Lonre Wang Date: Fri, 20 Oct 2017 16:33:44 +0800 Subject: [PATCH] Fix typo Closes gh-1569 --- src/docs/asciidoc/testing.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/testing.adoc b/src/docs/asciidoc/testing.adoc index ca1e09ca1e2..ed961a699ea 100644 --- a/src/docs/asciidoc/testing.adoc +++ b/src/docs/asciidoc/testing.adoc @@ -4533,7 +4533,7 @@ properties: mockMvc = standaloneSetup(new AccountController()) .defaultRequest(get("/") .contextPath("/app").servletPath("/main") - .accept(MediaType.APPLICATION_JSON).build(); + .accept(MediaType.APPLICATION_JSON)).build(); } ----