Fix unmatched parentheses in @ContextHierarchy example in reference manual
See gh-23487
This commit is contained in:
parent
74de495574
commit
6ce5f9da06
|
@ -3271,10 +3271,10 @@ configuration scenario:
|
|||
@ContextConfiguration("file:src/main/webapp/WEB-INF/applicationContext.xml")
|
||||
public abstract class AbstractWebTests {}
|
||||
|
||||
@ContextHierarchy(@ContextConfiguration("/spring/soap-ws-config.xml")
|
||||
@ContextHierarchy(@ContextConfiguration("/spring/soap-ws-config.xml"))
|
||||
public class SoapWebServiceTests extends AbstractWebTests {}
|
||||
|
||||
@ContextHierarchy(@ContextConfiguration("/spring/rest-ws-config.xml")
|
||||
@ContextHierarchy(@ContextConfiguration("/spring/rest-ws-config.xml"))
|
||||
public class RestWebServiceTests extends AbstractWebTests {}
|
||||
----
|
||||
--
|
||||
|
|
Loading…
Reference in New Issue