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

Commit db7e350d authored by wilsonshih's avatar wilsonshih
Browse files

Correct test path for test files.

Flag: com.android.window.flags.scramble_snapshot_file_name
Bug: 293139053
Test: enable flag, run
atest TaskSnapshotCacheTest TaskSnapshotLowResDisabledTest
TaskSnapshotPersisterLoaderTest ActivitySnapshotControllerTests

Change-Id: Id73270ccec58b56822c7f405981db765b3deec0f
parent 5edc389e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -153,7 +153,7 @@ class TaskSnapshotPersisterTestBase extends WindowTestsBase {
            path = FILES_DIR.getPath() + "/snapshots/";
        }
        for (int i = 0; i < fileNames.length; i++) {
            files[i] = new File(path + fileNames[i]);
            files[i] = new File(path, fileNames[i]);
        }
        return files;
    }