From 5e1d6b9a1bb8ff578f517b81ee8da0ebae6952a3 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 29 Sep 2011 22:19:30 +0000 Subject: [PATCH] [SPR-8240] polishing --- spring-framework-reference/src/testing.xml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spring-framework-reference/src/testing.xml b/spring-framework-reference/src/testing.xml index 97177e46d7..87707b039f 100644 --- a/spring-framework-reference/src/testing.xml +++ b/spring-framework-reference/src/testing.xml @@ -915,7 +915,7 @@ public void testProcessRepeatedly() { updates the state of the TestContext as the test progresses and delegates to TestExecutionListeners, which - instrument the actual test execution, by providing dependency + instrument the actual test execution by providing dependency injection, managing transactions, and so on. A ContextLoader (or SmartContextLoader) is responsible for @@ -1435,7 +1435,6 @@ public class HibernateTitleRepositoryTests { private HibernateTitleRepository titleRepository; @Test - @Transactional public void findById() { Title title = titleRepository.findById(new Long(10)); assertNotNull(title); @@ -1461,7 +1460,6 @@ public class HibernateTitleRepositoryTests { } @Test - @Transactional public void findById() { Title title = titleRepository.findById(new Long(10)); assertNotNull(title);