fix Base64 but breaks compat
[nikiroo-utils.git] / src / be / nikiroo / utils / test_code / StringUtilsTest.java
index de283594d467f1b73e6a998642290b8e0b63ff5c..3f95b6f3b10b235697fd1ae7e34c711cbf2c46c1 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.zip64s(orig);
+                               String unzipped = StringUtils.unzip64s(zipped);
                                assertEquals(orig, unzipped);
                        }
                });