#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:
Mic 2013-06-08 21:17:35 +08:00
parent 4f8063e9b8
commit 7b8a9ec8bc
2 changed files with 2 additions and 2 deletions

View file

@ -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;