change
This commit is contained in:
parent
ce2287ef7f
commit
be722bdf48
|
@ -113,6 +113,7 @@ public class TSDBDriverTest {
|
||||||
conn = DriverManager.getConnection(jdbcUrl, connProps);
|
conn = DriverManager.getConnection(jdbcUrl, connProps);
|
||||||
assertNotNull("failure - connection should not be null", conn);
|
assertNotNull("failure - connection should not be null", conn);
|
||||||
}
|
}
|
||||||
|
printRs();
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
fail("failure - should not throw Exception");
|
fail("failure - should not throw Exception");
|
||||||
|
@ -209,8 +210,7 @@ public class TSDBDriverTest {
|
||||||
assertNull("failure - getParentLogger should be be null", new TSDBDriver().getParentLogger());
|
assertNull("failure - getParentLogger should be be null", new TSDBDriver().getParentLogger());
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
public void printRs() {
|
||||||
public void after() {
|
|
||||||
Statement statement = null;
|
Statement statement = null;
|
||||||
try {
|
try {
|
||||||
statement = conn.createStatement();
|
statement = conn.createStatement();
|
||||||
|
|
Loading…
Reference in New Issue