Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 8, 2023
1 parent d9cbb67 commit a513310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void testLoadThrowsIllegalArgumentException() throws IOException {
queryLoader.load("e");
fail("Expecting exception: IllegalArgumentException");
} catch (final IllegalArgumentException e) {
assertEquals("e not found.",e.getMessage());
assertEquals("e not found.", e.getMessage());
assertEquals(QueryLoader.class.getName(), e.getStackTrace()[0].getClassName());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void testRethrowThrowsRuntimeException() {
public void testCreatesResultSetIteratorTakingThreeArgumentsAndCallsRemove() {

final ResultSet resultSet = mock(ResultSet.class);
final ResultSetIterator resultSetIterator = new ResultSetIterator(resultSet,null);
final ResultSetIterator resultSetIterator = new ResultSetIterator(resultSet, null);
resultSetIterator.remove();

}
Expand Down

0 comments on commit a513310

Please sign in to comment.