Skip to content

Commit a7d9411

Browse files
committed
Disable unit tests for Kotlin unsigned integers until IDE support gets fixed.
Closes #2374
1 parent b5ff1f0 commit a7d9411

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/test/kotlin/org/springframework/data/mapping/model/PreferredConstructorDiscovererUnitTests.kt

+6-3
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)