Index: C:/harmony/trunk_0427/modules/luni/src/test/java/tests/api/java/lang/ClassTest.java =================================================================== --- C:/harmony/trunk_0427/modules/luni/src/test/java/tests/api/java/lang/ClassTest.java (revision 420699) +++ C:/harmony/trunk_0427/modules/luni/src/test/java/tests/api/java/lang/ClassTest.java (working copy) @@ -737,7 +737,7 @@ System.setSecurityManager(new SecurityManager()); try { java.net.URL res = Object.class.getResource("Object.class"); - assertNull("Object.class should not be found", res); + assertNotNull("Object.class should be found", res); assertNotNull("Security: the file " + name + " can not be found in this directory", ClassTest.class @@ -768,7 +768,7 @@ System.setSecurityManager(new SecurityManager()); try { InputStream res = Object.class.getResourceAsStream("Object.class"); - assertNull("Object.class should not be found", res); + assertNotNull("Object.class should be found", res); InputStream is = ClassTest.class.getResourceAsStream(name); assertNotNull("Security: the file " + name + " can not be found in this directory", is);