We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7893fd commit 8a42f18Copy full SHA for 8a42f18
kyuubi-common/src/test/scala/org/apache/kyuubi/util/JdbcUtilsSuite.scala
@@ -17,6 +17,7 @@
17
18
package org.apache.kyuubi.util
19
20
+import java.sql.DriverManager
21
import java.util.Properties
22
import javax.sql.DataSource
23
@@ -35,9 +36,9 @@ class JdbcUtilsSuite extends KyuubiFunSuite {
35
36
37
case class Person(id: Int, name: String)
38
- override def beforeAll(): Unit = {
39
-
40
- super.beforeAll()
+ override def afterAll(): Unit = {
+ super.afterAll()
41
+ DriverManager.getConnection(shutdownUrl)
42
}
43
44
test("JdbcUtils methods") {
0 commit comments