Skip to content

Commit 6ce5f9d

Browse files
committed
Fix unmatched parentheses in @ContextHierarchy example in reference manual
See gh-23487
1 parent 74de495 commit 6ce5f9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/testing.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -3271,10 +3271,10 @@ configuration scenario:
32713271
@ContextConfiguration("file:src/main/webapp/WEB-INF/applicationContext.xml")
32723272
public abstract class AbstractWebTests {}
32733273
3274-
@ContextHierarchy(@ContextConfiguration("/spring/soap-ws-config.xml")
3274+
@ContextHierarchy(@ContextConfiguration("/spring/soap-ws-config.xml"))
32753275
public class SoapWebServiceTests extends AbstractWebTests {}
32763276
3277-
@ContextHierarchy(@ContextConfiguration("/spring/rest-ws-config.xml")
3277+
@ContextHierarchy(@ContextConfiguration("/spring/rest-ws-config.xml"))
32783278
public class RestWebServiceTests extends AbstractWebTests {}
32793279
----
32803280
--

0 commit comments

Comments
 (0)