summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2016-07-20 11:49:47 +0100
committer Nicolas Geoffray <ngeoffray@google.com> 2016-07-20 11:49:47 +0100
commita2d7cbb44e570ec0a9064dc93f57441e6ab9e45a (patch)
tree719173607332326795b55edeff071f1a1864739d
parent79e73245140f4115039a7284b3797d701f368fe6 (diff)
Fix test after rename.
bug:29964720 Change-Id: I37cebc40ca83597b159eefbc492e8cc105996306
-rw-r--r--test/612-jit-dex-cache/src/Main.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/612-jit-dex-cache/src/Main.java b/test/612-jit-dex-cache/src/Main.java
index f730b840a7..0e4bd2245d 100644
--- a/test/612-jit-dex-cache/src/Main.java
+++ b/test/612-jit-dex-cache/src/Main.java
@@ -42,7 +42,7 @@ class DelegateLastPathClassLoader extends PathClassLoader {
public class Main {
private static Class classFromDifferentLoader() throws Exception {
- final String DEX_FILE = System.getenv("DEX_LOCATION") + "/612-classloader-wonkery-ex.jar";
+ final String DEX_FILE = System.getenv("DEX_LOCATION") + "/612-jit-dex-cache-ex.jar";
ClassLoader loader = new DelegateLastPathClassLoader(DEX_FILE, Main.class.getClassLoader());
return loader.loadClass("LoadedByAppClassLoader");
}