Browse Source

revise cache API

+ update failing test
pull/7/head
Costin Leau 14 years ago
parent
commit
8dfcae535e
  1. 2
      org.springframework.context/src/test/java/org/springframework/cache/vendor/AbstractNativeCacheTest.java

2
org.springframework.context/src/test/java/org/springframework/cache/vendor/AbstractNativeCacheTest.java vendored

@ -63,7 +63,7 @@ public abstract class AbstractNativeCacheTest<T> { @@ -63,7 +63,7 @@ public abstract class AbstractNativeCacheTest<T> {
assertNull(cache.get(key));
cache.put(key, value);
assertEquals(value, cache.get(key));
assertEquals(value, cache.get(key).get());
}
@Test

Loading…
Cancel
Save