Version 4.5.0
[nikiroo-utils.git] / src / be / nikiroo / utils / test / StringUtilsTest.java
index 29f5bf3d8936b9f9c48637ddbe7af43057fc238c..e35be4fc366f4c12650de731286d104790a2e953 100644 (file)
@@ -223,8 +223,8 @@ class StringUtilsTest extends TestLauncher {
                        @Override
                        public void test() throws Exception {
                                String orig = "test";
-                               String zipped = StringUtils.zip64(orig);
-                               String unzipped = StringUtils.unzip64(zipped);
+                               String zipped = StringUtils.base64(orig, true);
+                               String unzipped = StringUtils.unbase64s(zipped, true);
                                assertEquals(orig, unzipped);
                        }
                });