Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0042cff authored by Neil Fuller's avatar Neil Fuller
Browse files

Switch test to TestIoUtils from IoUtils

Remove a dependency on a private platform API method.

Bug: 113148576
Test: Run test
Change-Id: Iaf5bd2853b3f9d496b6450c4ffd16992fe645be2
parent afffa372
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ import java.util.Map;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

import libcore.io.IoUtils;
import libcore.testing.io.TestIoUtils;

import org.junit.After;
import org.junit.Assert;
@@ -63,7 +63,7 @@ public class DexMetadataHelperTest {

    @Before
    public void setUp() {
        mTmpDir = IoUtils.createTemporaryDirectory("DexMetadataHelperTest");
        mTmpDir = TestIoUtils.createTemporaryDirectory("DexMetadataHelperTest");
    }

    @After