Disable Caching in your test in your Spring boot application by adding following properties in application.properties file in your test resources folder
spring.cache.type = none
This will disable the cache in your tests.
Disable Caching in your test in your Spring boot application by adding following properties in application.properties file in your test resources folder
spring.cache.type = none
This will disable the cache in your tests.