mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
66e405525b
Search for : assertThat\((.+) instanceof (\w+)\)\.isTrue\(\) Replace with : assertThat($1).isInstanceOf($2.class) Search for : assertThat\((.+) instanceof (\w+)\)\.isFalse\(\) Replace with : assertThat($1).isNotInstanceOf($2.class) Closes gh-31760