mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:25:50 +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)
|
||||
@WebAppConfiguration
|
||||
@ContextConfiguration("VisitsViewTest-config.xml")
|
||||
@ContextConfiguration("VisitsViewTests-config.xml")
|
||||
@ActiveProfiles("jdbc")
|
||||
public class VisitsViewTest {
|
||||
public class VisitsViewTests {
|
||||
|
||||
@Autowired
|
||||
private WebApplicationContext webApplicationContext;
|
Loading…
Reference in a new issue