Jenkins & SQ Test Commit

- removed failed test in case of jenkins job testing
This commit is contained in:
Artem Dobrynin 2019-08-14 10:25:43 +04:00
parent 3aafd4ecf8
commit 405b356667

View file

@ -3,17 +3,12 @@ package org.springframework.samples.petclinic;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.web.servlet.MockMvc;
public class AlwaysFailTests {
@Autowired
private MockMvc mockMvc;
@Test
public void failTest() throws Exception{
assertEquals(1, 2);
public void failTest() throws Exception {
assertEquals(2, 2);
}
}