[SPR-8240] polishing

master
Sam Brannen 13 years ago
parent 3f5135d809
commit 5e1d6b9a1b
  1. 4
      spring-framework-reference/src/testing.xml

@ -915,7 +915,7 @@ public void testProcessRepeatedly() {
updates the state of the <classname>TestContext</classname> as the updates the state of the <classname>TestContext</classname> as the
test progresses and delegates to test progresses and delegates to
<interfacename>TestExecutionListener</interfacename>s, which <interfacename>TestExecutionListener</interfacename>s, which
instrument the actual test execution, by providing dependency instrument the actual test execution by providing dependency
injection, managing transactions, and so on. A injection, managing transactions, and so on. A
<interfacename>ContextLoader</interfacename> (or <interfacename>ContextLoader</interfacename> (or
<interfacename>SmartContextLoader</interfacename>) is responsible for <interfacename>SmartContextLoader</interfacename>) is responsible for
@ -1435,7 +1435,6 @@ public class HibernateTitleRepositoryTests {
private HibernateTitleRepository titleRepository; private HibernateTitleRepository titleRepository;
@Test @Test
@Transactional
public void findById() { public void findById() {
Title title = titleRepository.findById(new Long(10)); Title title = titleRepository.findById(new Long(10));
assertNotNull(title); assertNotNull(title);
@ -1461,7 +1460,6 @@ public class HibernateTitleRepositoryTests {
} }
@Test @Test
@Transactional
public void findById() { public void findById() {
Title title = titleRepository.findById(new Long(10)); Title title = titleRepository.findById(new Long(10));
assertNotNull(title); assertNotNull(title);

Loading…
Cancel
Save