mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:25:50 +00:00
fixed test suite failing
This commit is contained in:
parent
1b48694fd9
commit
31733db715
2 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package org.springframework.samples.petclinic.hibernate;
|
||||
|
||||
import org.springframework.samples.petclinic.AbstractClinicTests;
|
||||
import org.springframework.test.annotation.DirtiesContext;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
|
||||
/**
|
||||
|
@ -15,6 +16,7 @@ import org.springframework.test.context.ContextConfiguration;
|
|||
* @author Sam Brannen
|
||||
*/
|
||||
@ContextConfiguration
|
||||
@DirtiesContext
|
||||
public class HibernateClinicTests extends AbstractClinicTests {
|
||||
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package org.springframework.samples.petclinic.jdbc;
|
||||
|
||||
import org.springframework.samples.petclinic.AbstractClinicTests;
|
||||
import org.springframework.test.annotation.DirtiesContext;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
|
||||
/**
|
||||
|
@ -14,6 +15,7 @@ import org.springframework.test.context.ContextConfiguration;
|
|||
* @author Thomas Risberg
|
||||
*/
|
||||
@ContextConfiguration
|
||||
@DirtiesContext
|
||||
public class SimpleJdbcClinicTests extends AbstractClinicTests {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue