We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d15560e commit b5a4373Copy full SHA for b5a4373
src/test/java/com/zaxxer/hikari/pool/UnwrapTest.java
@@ -56,7 +56,7 @@ public void testUnwrapConnection() throws SQLException
56
assertNotNull(connection);
57
58
StubConnection unwrapped = connection.unwrap(StubConnection.class);
59
- assertTrue("unwrapped connection is not instance of StubConnection: " + unwrapped, (unwrapped != null && unwrapped instanceof StubConnection));
+ assertTrue("unwrapped connection is not instance of StubConnection: " + unwrapped, (unwrapped instanceof StubConnection));
60
}
61
62
0 commit comments