From 52647f0246f7f7aae080552f75d35ddd9e14a50a Mon Sep 17 00:00:00 2001 From: Min Zhao Date: Wed, 30 Jun 2021 20:11:57 +0800 Subject: [PATCH] [KYUUBI #730] delete redundant empty line ### _Why are the changes needed?_ delete redundant empty line ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/tools/testing.html#running-tests) locally before make a pull request Closes #730 from zhaomin1423/code_style. Closes #730 33ec472b [Min Zhao] delete redundant empty line Authored-by: Min Zhao Signed-off-by: ulysses-you --- .../src/test/scala/org/apache/kyuubi/operation/JDBCTests.scala | 2 -- 1 file changed, 2 deletions(-) diff --git a/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTests.scala b/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTests.scala index 373f4152d..ae43cbc4f 100644 --- a/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTests.scala +++ b/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/JDBCTests.scala @@ -357,8 +357,6 @@ trait JDBCTests extends BasicJDBCTests { val rs = statement.executeQuery("SELECT kyuubi_version()") assert(rs.next()) assert(rs.getString(1) == KYUUBI_VERSION) - } - } }