File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
src/test/kotlin/org/springframework/data/mapping/model Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,8 @@ class PreferredConstructorDiscovererUnitTests {
8888 assertThat(constructor ).isNull()
8989 }
9090
91- @Test // DATACMNS-1800, gh-2215
91+ // See https://github.com/spring-projects/spring-data-commons/issues/2374
92+ /* @Test // DATACMNS-1800, gh-2215
9293 @ExperimentalUnsignedTypes
9394 fun `should discover constructor for class using unsigned types`() {
9495
@@ -98,7 +99,7 @@ class PreferredConstructorDiscovererUnitTests {
9899 )
99100
100101 assertThat(constructor).isNotNull()
101- }
102+ } */
102103
103104 data class Simple (val firstname : String )
104105
@@ -137,11 +138,13 @@ class PreferredConstructorDiscovererUnitTests {
137138 )
138139 }
139140
141+ /*
142+ See https://github.com/spring-projects/spring-data-commons/issues/2374
140143 @ExperimentalUnsignedTypes
141144 data class UnsignedTypesEntity(
142145 val id: String,
143146 val a: UInt = 5u,
144147 val b: Int = 5,
145148 val c: Double = 1.5
146- )
149+ ) */
147150}
You can’t perform that action at this time.
0 commit comments