Merge commit '77d3a60869e7a780c6ae069e51530e1eacece5e2'
[fanfix.git] / src / be / nikiroo / utils / test_code / StringUtilsTest.java
index de283594d467f1b73e6a998642290b8e0b63ff5c..a441195b24d6dd6dafd2da14da02d5e61fd01d23 100644 (file)
@@ -225,8 +225,8 @@ class StringUtilsTest extends TestLauncher {
                        @Override
                        public void test() throws Exception {
                                String orig = "test";
-                               String zipped = StringUtils.base64(orig, true);
-                               String unzipped = StringUtils.unbase64s(zipped, true);
+                               String zipped = StringUtils.zip64(orig);
+                               String unzipped = StringUtils.unzip64s(zipped);
                                assertEquals(orig, unzipped);
                        }
                });