Merge pull request #5931 from Shredder121-me:assert-usage

* pr/5931:
  Fix incorrect usage of Assert.notNull()
This commit is contained in:
Stephane Nicoll 2016-05-13 09:24:20 +02:00
commit a258a1045c
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ public class CacheStatisticsAutoConfigurationTests {
private Cache getCache(String cacheName) {
Cache cache = this.cacheManager.getCache(cacheName);
Assert.notNull("No cache with name '" + cacheName + "' found.");
Assert.notNull(cache, "No cache with name '" + cacheName + "' found.");
return cache;
}