Skip to content

Commit eee3c55

Browse files
Update kyuubi-common/src/test/scala/org/apache/kyuubi/util/JdbcUtilsSuite.scala
Co-authored-by: Bowen Liang <[email protected]>
1 parent d02bb99 commit eee3c55

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

kyuubi-common/src/test/scala/org/apache/kyuubi/util/JdbcUtilsSuite.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ import org.apache.kyuubi.KyuubiFunSuite
2626

2727
class JdbcUtilsSuite extends KyuubiFunSuite {
2828

29-
private val connUrl = s"jdbc:derby:memory:jdbc_utils_test;create=true"
30-
private val shutdownUrl = s"jdbc:derby:memory:jdbc_utils_test;shutdown=true"
29+
private val dbUrl = s"jdbc:derby:memory:jdbc_utils_test"
30+
private val connUrl = s"$dbUrl;create=true"
31+
private val shutdownUrl = s"$dbUrl;shutdown=true"
3132
private val driverClz = "org.apache.derby.jdbc.AutoloadedDriver"
3233

3334
implicit private val ds: DataSource =

0 commit comments

Comments
 (0)