Skip to content

Commit 3ec8af7

Browse files
AntoineJTgregturn
authored andcommitted
Fix import statement for XMLUnit 2 upgrade.
When the XMLUnit2 upgrade was done (commit: c39d3d1) this import was forgotten. It causes the bug reported with XMLUnit1 (issue: #1193) to still be present when using `ResultMatchers#soapEnvelope(Source)`. For more infos: #1193 (comment) See #1370. Related: #1193.
1 parent 343d731 commit 3ec8af7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-ws-test/src/main/java/org/springframework/ws/test/server/ResponseMatchers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
import org.springframework.ws.WebServiceMessage;
3232
import org.springframework.ws.soap.SoapVersion;
3333
import org.springframework.ws.test.support.matcher.SchemaValidatingMatcher;
34-
import org.springframework.ws.test.support.matcher.SoapEnvelopeDiffMatcher;
3534
import org.springframework.ws.test.support.matcher.SoapHeaderMatcher;
3635
import org.springframework.ws.test.support.matcher.xmlunit2.PayloadDiffMatcher;
36+
import org.springframework.ws.test.support.matcher.xmlunit2.SoapEnvelopeDiffMatcher;
3737
import org.springframework.xml.transform.ResourceSource;
3838

3939
/**

0 commit comments

Comments
 (0)