working
[nikiroo-utils.git] / src / be / nikiroo / utils / test_code / CryptUtilsTest.java
index 61e18fbb49198ec36240d361a9d16d13a44af7c3..11578f5be88901f6555ee3d6cb9a2c5801d756c7 100644 (file)
@@ -135,15 +135,17 @@ class CryptUtilsTest extends TestLauncher {
                addTest(new TestCase("Simple test") {
                        @Override
                        public void test() throws Exception {
-                               InputStream in = new ByteArrayInputStream(new byte[] {42, 127, 12});
-                               crypt.encryptInputStream(in);
+                               InputStream in = new ByteArrayInputStream(new byte[] { 42, 127,
+                                               12 });
+                               crypt.encrypt(in);
                                ByteArrayOutputStream out = new ByteArrayOutputStream();
                                IOUtils.write(in, out);
                                byte[] result = out.toByteArray();
-                               
-                               assertEquals("We wrote 3 bytes, we expected 3 bytes back but got: "
-                                               + result.length, result.length, result.length);
-                               
+
+                               assertEquals(
+                                               "We wrote 3 bytes, we expected 3 bytes back but got: "
+                                                               + result.length, result.length, result.length);
+
                                assertEquals(42, result[0]);
                                assertEquals(127, result[1]);
                                assertEquals(12, result[2]);