mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
233b225b4f
Prior to this commit, HeaderResultMatchers had a direct dependency on org.junit.Assert which forces JUnit 4 to be present on the classpath. This commit fixes this by introducing assertNotNull() in org.springframework.test.util.AssertionErrors and delegating to that instead. Fixes gh-22932