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

(cherry picked from commit 61ca5c220b)
(cherry picked from commit 68536a4d6d)
This commit is contained in:
Gail Badner 2016-11-22 22:50:23 -08:00
parent cd9f0d344a
commit fbc0d76789
1 changed files with 3 additions and 3 deletions

View File

@ -42,17 +42,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