Rename limit package to passenger

Rename LimitIntegrationTest to PassengerRepositoryIntegrationTest

Going to include code on sorting so it will no longer be limit specific.

BAEL-2331
This commit is contained in:
Trevor Gowing 2018-11-25 16:13:57 +02:00
parent 0b7f01463c
commit 0c384f13b0
5 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.limit;
package com.baeldung.passenger;
import javax.persistence.Basic;
import javax.persistence.Column;

View File

@ -1,4 +1,4 @@
package com.baeldung.limit;
package com.baeldung.passenger;
import org.springframework.data.jpa.repository.JpaRepository;

View File

@ -1,4 +1,4 @@
package com.baeldung.limit;
package com.baeldung.passenger;
import org.springframework.stereotype.Repository;

View File

@ -1,4 +1,4 @@
package com.baeldung.limit;
package com.baeldung.passenger;
import org.junit.Before;
import org.junit.Test;
@ -18,7 +18,7 @@ import static org.junit.Assert.assertEquals;
@DataJpaTest
@RunWith(SpringRunner.class)
public class LimitIntegrationTest {
public class PassengerRepositoryIntegrationTest {
@PersistenceContext
private EntityManager entityManager;