Remove inconsistent spaces

This commit is contained in:
Johnny Lim
2018-05-05 14:19:41 +09:00
committed by Juergen Hoeller
parent 8f21cb1a7c
commit fb898e1727
14 changed files with 40 additions and 40 deletions

View File

@@ -112,7 +112,7 @@ public class SqlLobValueTests {
lob.setTypeValue(preparedStatement, 1, Types.CLOB, "test");
verify(creator).setClobAsAsciiStream(eq(preparedStatement), eq(1), inputStreamCaptor.capture(), eq(3));
byte[] bytes = new byte[3];
inputStreamCaptor.getValue().read(bytes );
inputStreamCaptor.getValue().read(bytes);
assertThat(bytes, equalTo(testContent));
}