X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest_code%2FCryptUtilsTest.java;h=49005acdc054359508bfd5ef593bb3dfdbaa3962;hb=f28a134e4d06ee40d62c0c62123fc4799d49d8eb;hp=61e18fbb49198ec36240d361a9d16d13a44af7c3;hpb=6fd1a061ff06f14552deaf0e20aa21cee07a396d;p=nikiroo-utils.git diff --git a/src/be/nikiroo/utils/test_code/CryptUtilsTest.java b/src/be/nikiroo/utils/test_code/CryptUtilsTest.java index 61e18fb..49005ac 100644 --- a/src/be/nikiroo/utils/test_code/CryptUtilsTest.java +++ b/src/be/nikiroo/utils/test_code/CryptUtilsTest.java @@ -136,7 +136,7 @@ class CryptUtilsTest extends TestLauncher { @Override public void test() throws Exception { InputStream in = new ByteArrayInputStream(new byte[] {42, 127, 12}); - crypt.encryptInputStream(in); + crypt.encrypt(in); ByteArrayOutputStream out = new ByteArrayOutputStream(); IOUtils.write(in, out); byte[] result = out.toByteArray();