# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. Index: mauve/ChangeLog --- mauve/ChangeLog Base (1.2140) +++ mauve/ChangeLog Locally Modified (Based On 1.2140) @@ -1,3 +1,10 @@ +2009-07-08 Mario Torre + + * gnu/testlet/javax/imageio/spi/ServiceRegistry/lookupProviders: + Use the classloader of the current context, so that the test works + when classloader other than the system classloader was used to load the + test. + 2009-07-03 Mario Torre * gnu/testlet/java/util/ArrayList/AcuniaArrayListTest: Index: mauve/gnu/testlet/javax/imageio/spi/ServiceRegistry/lookupProviders.java --- mauve/gnu/testlet/javax/imageio/spi/ServiceRegistry/lookupProviders.java Base (1.1) +++ mauve/gnu/testlet/javax/imageio/spi/ServiceRegistry/lookupProviders.java Locally Modified (Based On 1.1) @@ -229,6 +229,7 @@ public CustomClassLoader(URL[] providerLists) { + super(CustomClassLoader.class.getClassLoader()); this.providerLists = providerLists; }