Merge pull request #8794 from rdevarakonda/BAEL-3324-Fix-Tests
BAEL-3324 | Fix broken integration tests
This commit is contained in:
commit
754df49a31
|
@ -21,7 +21,7 @@ import java.util.List;
|
|||
*/
|
||||
@Configuration
|
||||
@EnableWebMvc
|
||||
@ComponentScan({ "com.baeldung.web", "com.baeldung.requestmapping" })
|
||||
@ComponentScan({ "com.baeldung.web.controller.status", "com.baeldung.requestmapping" })
|
||||
public class MvcConfig implements WebMvcConfigurer {
|
||||
|
||||
public MvcConfig() {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.web.controller;
|
||||
package com.baeldung.web.controller.customer;
|
||||
|
||||
import com.baeldung.model.Customer;
|
||||
import com.baeldung.service.CustomerService;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.web.controller;
|
||||
package com.baeldung.web.controller.customer;
|
||||
|
||||
import com.baeldung.model.Customer;
|
||||
import com.baeldung.service.CustomerService;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.web.controller;
|
||||
package com.baeldung.web.controller.customer;
|
||||
|
||||
import com.baeldung.model.Customer;
|
||||
import com.baeldung.service.CustomerService;
|
Loading…
Reference in New Issue