From 5d2a84f39ad30c6e04bb36aba71b7ee0e7b98f1b Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Fri, 22 Jul 2011 11:20:18 +0000 Subject: [PATCH] fixed test --- .../annotation/EnableTransactionManagementIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.integration-tests/src/test/java/org/springframework/transaction/annotation/EnableTransactionManagementIntegrationTests.java b/org.springframework.integration-tests/src/test/java/org/springframework/transaction/annotation/EnableTransactionManagementIntegrationTests.java index 51bcaeebf5..403f12494a 100644 --- a/org.springframework.integration-tests/src/test/java/org/springframework/transaction/annotation/EnableTransactionManagementIntegrationTests.java +++ b/org.springframework.integration-tests/src/test/java/org/springframework/transaction/annotation/EnableTransactionManagementIntegrationTests.java @@ -184,7 +184,7 @@ public class EnableTransactionManagementIntegrationTests { public CacheManager cacheManager() { SimpleCacheManager mgr = new SimpleCacheManager(); ArrayList caches = new ArrayList(); - caches.add(new ConcurrentMapCache()); + caches.add(new ConcurrentMapCache("")); mgr.setCaches(caches); return mgr; }