File tree 1 file changed +6
-3
lines changed
src/test/kotlin/org/springframework/data/mapping/model
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,8 @@ class PreferredConstructorDiscovererUnitTests {
88
88
assertThat(constructor ).isNull()
89
89
}
90
90
91
- @Test // DATACMNS-1800, gh-2215
91
+ // See https://github.com/spring-projects/spring-data-commons/issues/2374
92
+ /* @Test // DATACMNS-1800, gh-2215
92
93
@ExperimentalUnsignedTypes
93
94
fun `should discover constructor for class using unsigned types`() {
94
95
@@ -98,7 +99,7 @@ class PreferredConstructorDiscovererUnitTests {
98
99
)
99
100
100
101
assertThat(constructor).isNotNull()
101
- }
102
+ } */
102
103
103
104
data class Simple (val firstname : String )
104
105
@@ -137,11 +138,13 @@ class PreferredConstructorDiscovererUnitTests {
137
138
)
138
139
}
139
140
141
+ /*
142
+ See https://github.com/spring-projects/spring-data-commons/issues/2374
140
143
@ExperimentalUnsignedTypes
141
144
data class UnsignedTypesEntity(
142
145
val id: String,
143
146
val a: UInt = 5u,
144
147
val b: Int = 5,
145
148
val c: Double = 1.5
146
- )
149
+ ) */
147
150
}
You can’t perform that action at this time.
0 commit comments