minor java testign work

This commit is contained in:
eugenp 2014-09-15 00:53:34 +03:00
parent 19131413c5
commit 7da44d2140
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ public class JavaInputStreamToXUnitTest {
@Test
public final void givenUsingCommonsIO_whenConvertingAnInputStreamToAByteArray_thenCorrect() throws IOException {
final ByteArrayInputStream initialStream = new ByteArrayInputStream(new byte[] { 0, 1, 2 });
final InputStream initialStream = new ByteArrayInputStream(new byte[] { 0, 1, 2 });
final byte[] targetArray = IOUtils.toByteArray(initialStream);
}