Skip to content

Commit d1c73aa

Browse files
authored
[JAVA-44840] Fix integration tests in the spring-data-jpa-query-5 module (#18407)
1 parent bc47cb2 commit d1c73aa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

persistence-modules/spring-data-jpa-query-5/src/test/java/com/baeldung/spring/data/jpa/filtering/WearableRepositoryInvalidEntityIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.baeldung.spring.data.jpa.filtering;
22

3+
import org.junit.jupiter.api.Disabled;
34
import org.junit.jupiter.api.Test;
45
import org.springframework.beans.factory.annotation.Autowired;
56
import org.springframework.boot.autoconfigure.domain.EntityScan;
@@ -21,6 +22,7 @@
2122
type = FilterType.ASSIGNABLE_TYPE,
2223
value = WearableValidEntity.class
2324
))
25+
@Disabled("Disabled due to ApplicationContext failure caused by an invalid entity. Enable the test and view the logs.")
2426
public class WearableRepositoryInvalidEntityIntegrationTest {
2527

2628
@Autowired

0 commit comments

Comments
 (0)