addressing code review comments

This commit is contained in:
shapirov103 2020-07-02 23:40:28 -04:00
parent 9c2d96ccd7
commit 16171e95d3
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ public class JdbcDriverLoadingUnitTest {
@Before
public void setup() throws SQLException {
if(!org.postgresql.Driver.isRegistered()) {
if (!org.postgresql.Driver.isRegistered()) {
org.postgresql.Driver.register();
}
}
@ -58,7 +58,7 @@ public class JdbcDriverLoadingUnitTest {
org.postgresql.Driver.register(); // This is invoked as part of Class.forName() logic
driver = getDriver();
driver = getDriver();
assertNotNull("Driver must register as part of class loading", driver);
}