mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 20:35:49 +00:00
#18 fixing error related to VisitsViewTests
- test didn't have the suffix "Tests" so it was not taken into account when running Maven in the comand line
This commit is contained in:
parent
4f8063e9b8
commit
7b8a9ec8bc
2 changed files with 2 additions and 2 deletions
|
@ -44,9 +44,9 @@ import org.springframework.web.context.WebApplicationContext;
|
||||||
*/
|
*/
|
||||||
@RunWith(SpringJUnit4ClassRunner.class)
|
@RunWith(SpringJUnit4ClassRunner.class)
|
||||||
@WebAppConfiguration
|
@WebAppConfiguration
|
||||||
@ContextConfiguration("VisitsViewTest-config.xml")
|
@ContextConfiguration("VisitsViewTests-config.xml")
|
||||||
@ActiveProfiles("jdbc")
|
@ActiveProfiles("jdbc")
|
||||||
public class VisitsViewTest {
|
public class VisitsViewTests {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private WebApplicationContext webApplicationContext;
|
private WebApplicationContext webApplicationContext;
|
Loading…
Reference in a new issue