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: https://github.com/spring-projects/spring-ws/issues/1193#issuecomment-1650162836

See #1370.
Related: #1193.
This commit is contained in:
Antoine James Tournepiche
2023-08-15 20:07:24 +02:00
committed by Greg L. Turnquist
parent 343d731a4e
commit 3ec8af7682

View File

@@ -31,9 +31,9 @@ import org.springframework.ws.FaultAwareWebServiceMessage;
import org.springframework.ws.WebServiceMessage;
import org.springframework.ws.soap.SoapVersion;
import org.springframework.ws.test.support.matcher.SchemaValidatingMatcher;
import org.springframework.ws.test.support.matcher.SoapEnvelopeDiffMatcher;
import org.springframework.ws.test.support.matcher.SoapHeaderMatcher;
import org.springframework.ws.test.support.matcher.xmlunit2.PayloadDiffMatcher;
import org.springframework.ws.test.support.matcher.xmlunit2.SoapEnvelopeDiffMatcher;
import org.springframework.xml.transform.ResourceSource;
/**