update ehcache to version 2.5.1

This commit is contained in:
Sebastian Sdorra
2012-02-01 15:44:29 +01:00
parent 0c38a6346a
commit 12fac88aaf
4 changed files with 15 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ public class EhCacheTest
@Before
public void before()
{
cm = new EhCacheManager();
cm = new EhCacheManager(net.sf.ehcache.CacheManager.create());
cache = cm.getCache(String.class, String.class, "test");
}

View File

@@ -283,7 +283,8 @@ public class ChainAuthenticationManagerTest extends AbstractTestBase
//~--- fields ---------------------------------------------------------------
/** Field description */
private CacheManager cacheManager = new EhCacheManager();
private CacheManager cacheManager =
new EhCacheManager(net.sf.ehcache.CacheManager.create());
/** Field description */
private ChainAuthenticatonManager manager;