HHH-11083 : Change references to "OldCacheKeyImplementation" to "CacheKeyImplementation" in CacheKeysFactoryTest

This commit is contained in:
Gail Badner 2016-11-22 22:50:23 -08:00
parent 60d420b011
commit 61ca5c220b
1 changed files with 3 additions and 3 deletions

View File

@ -41,17 +41,17 @@ public class CacheKeysFactoryTest extends BaseUnitTestCase {
@Test
public void testNotSet() throws Exception {
test(null, "OldCacheKeyImplementation");
test(null, "CacheKeyImplementation");
}
@Test
public void testDefault() throws Exception {
test(DefaultCacheKeysFactory.SHORT_NAME, "OldCacheKeyImplementation");
test(DefaultCacheKeysFactory.SHORT_NAME, "CacheKeyImplementation");
}
@Test
public void testDefaultClass() throws Exception {
test(DefaultCacheKeysFactory.class.getName(), "OldCacheKeyImplementation");
test(DefaultCacheKeysFactory.class.getName(), "CacheKeyImplementation");
}
@Test