Disable multi-tenant test as Hibernate broke the by-id functionality.

See #669
This commit is contained in:
Mark Paluch
2023-10-25 12:53:35 +02:00
parent 6430790e63
commit ffadb798e9

View File

@@ -3,6 +3,7 @@ package example.springdata.jpa.hibernatemultitenant.partition;
import static org.assertj.core.api.Assertions.*;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@@ -48,6 +49,7 @@ class ApplicationTests {
}
@Test
@Disabled("Find by Id no longer considers the current tenant")
void findById() {
final Person adam = createPerson(PIVOTAL, "Adam");