diff --git a/kyuubi-common/src/test/scala/org/apache/kyuubi/ThreadAudit.scala b/kyuubi-common/src/test/scala/org/apache/kyuubi/ThreadAudit.scala index 08fffb9e7..3f7ace6fe 100644 --- a/kyuubi-common/src/test/scala/org/apache/kyuubi/ThreadAudit.scala +++ b/kyuubi-common/src/test/scala/org/apache/kyuubi/ThreadAudit.scala @@ -36,7 +36,7 @@ trait ThreadAudit extends Logging { s"thread names: ${remainingThreadNames.mkString(", ")} =====\n") } } else { - warn(s"\n\n= THREAD AUDIT POST ACTION CALLED WITHOUT PRE ACTION IN SUITE $shortName ==\n") + warn(s"\n\n== THREAD AUDIT POST ACTION CALLED WITHOUT PRE ACTION IN SUITE $shortName ==\n") } } diff --git a/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTestUtils.scala b/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTestUtils.scala index 705364a4b..cd1cfe571 100644 --- a/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTestUtils.scala +++ b/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTestUtils.scala @@ -79,8 +79,9 @@ trait JDBCTestUtils extends KyuubiFunSuite { info("Closing statements") statements.foreach(_.close()) info("Closed statements") - connections.foreach(_.close()) info("Closing connections") + connections.foreach(_.close()) + info("Closed connections") } }