Github user emilianbold commented on a diff in the pull request:
https://github.com/apache/incubator-netbeans/pull/44#discussion_r142631994
--- Diff:
autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/UpdateProviderFactoryCreateTest.java
---
@@ -50,7 +49,7 @@ protected void tearDown () throws Exception {
public void testCreate () throws Exception {
String name = "new-one";
String displayName = "Newone";
- URL url = UpdateUnitFactoryTest.class.getResource
("data/catalog.xml");
+ URL url = getClass().getResource
("/org/netbeans/modules/autoupdate/updateprovider/data/catalog.xml");
--- End diff --
Doesn't the relative path data/catalog.xml work anymore?
---