Skip to content

Commit d3b9e01

Browse files
build(deps): bump io.kotest:kotest-assertions-core-jvm from 5.9.1 to 6.0.3 (#407)
1 parent e055941 commit d3b9e01

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

common/src/test/kotlin/org/neo4j/connectors/kafka/data/converter/CompactValueConverterTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ class DynamicTypesCompactTest {
446446
is IntArray -> value.toList()
447447
is LongArray -> value.toList()
448448
is ShortArray -> value.toList()
449+
is Array<*> -> value.toList()
449450
else -> value
450451
}
451452

common/src/test/kotlin/org/neo4j/connectors/kafka/data/converter/ExtendedValueConverterTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ class ExtendedValueConverterTest {
144144
Arguments.of("empty list (long)", emptyList<Long>(), null),
145145
Arguments.of("float array (empty)", FloatArray(0), null),
146146
Arguments.of("float array", FloatArray(1) { 1.toFloat() }, listOf(1.toDouble())),
147-
Arguments.of("array (float)", Array(1) { 1.toFloat() }, null),
148-
Arguments.of("list (float)", listOf(1.toFloat()), null),
147+
Arguments.of("array (float)", Array(1) { 1.toFloat() }, listOf(1.toDouble())),
148+
Arguments.of("list (float)", listOf(1.toFloat()), listOf(1.toDouble())),
149149
Arguments.of("empty list (float)", emptyList<Float>(), null),
150150
Arguments.of("double array (empty)", DoubleArray(0), null),
151151
Arguments.of("double array", DoubleArray(1) { 1.toDouble() }, null),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<!-- although our baseline version is 3.1, kafka connect below 3.8 is vulnerable to https://www.cve.org/CVERecord?id=CVE-2023-43642 -->
6464
<!-- so we set the version to the first version that the vulnerability is resolved -->
6565
<kafka.version>3.8.1</kafka.version>
66-
<kotest-assertions-core-jvm.version>5.9.1</kotest-assertions-core-jvm.version>
66+
<kotest-assertions-core-jvm.version>6.0.3</kotest-assertions-core-jvm.version>
6767
<kotlin.coroutines.version>1.10.2</kotlin.coroutines.version>
6868
<kotlin.version>2.2.20</kotlin.version>
6969
<license-maven-plugin.version>5.0.0</license-maven-plugin.version>

0 commit comments

Comments
 (0)