Skip to content

Commit e1d3428

Browse files
committed
JAVA-24108 Upgrade H2 in kotlin-libraries module
1 parent 16809d4 commit e1d3428

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kotlin-libraries/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
<objenesis.version>2.6</objenesis.version>
120120
<rxkotlin.version>2.3.0</rxkotlin.version>
121121
<arrow-core.version>1.2.0</arrow-core.version>
122-
<h2.version>2.1.210</h2.version>
122+
<h2.version>2.2.220</h2.version>
123123
<ktor.io.version>1.4.2</ktor.io.version>
124124
</properties>
125125

kotlin-libraries/src/test/kotlin/com/baeldung/kotlin/exposed/ExposedUnitTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ExposedUnitTest {
3737
val db = Database.connect("jdbc:h2:mem:test", driver = "org.h2.Driver")
3838

3939
transaction(db) {
40-
assertEquals(2.1.toBigDecimal(), db.version)
40+
assertEquals(2.2.toBigDecimal(), db.version)
4141
assertEquals("h2", db.vendor)
4242
}
4343
}

0 commit comments

Comments
 (0)