minor clean up

This commit is contained in:
DOHA
2019-01-02 23:16:14 +02:00
parent e0a063a932
commit 2ec62d9091
3 changed files with 3 additions and 45 deletions

View File

@@ -10,7 +10,7 @@ import spock.lang.Title
@Title("Application Specification")
@Narrative("Specification which beans are expected")
@SpringBootTest
class LoadContextIntegrationTest extends Specification {
class LoadContextTest extends Specification {
@Autowired(required = false)
private WebController webController

View File

@@ -14,7 +14,7 @@ import spock.lang.Title
@Narrative("The Specification of the behaviour of the WebController. It can greet a person, change the name and reset it to 'world'")
@AutoConfigureMockMvc(secure=false)
@WebMvcTest()
class WebControllerIntegrationTest extends Specification {
class WebControllerTest extends Specification {
@Autowired
private MockMvc mvc