Merge pull request #8794 from rdevarakonda/BAEL-3324-Fix-Tests

BAEL-3324 | Fix broken integration tests
This commit is contained in:
Eric Martin
2020-02-29 19:41:16 -06:00
committed by GitHub
4 changed files with 4 additions and 4 deletions
@@ -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;