diff -r 6fceb66e1ad7 -r b5690fc25af6 test/unit/util/ResourceTest.java
--- a/test/unit/util/ResourceTest.java	Fri Jun 26 16:48:50 2009 +0200
+++ b/test/unit/util/ResourceTest.java	Fri Oct 14 00:45:06 2011 +0200
@@ -41,7 +41,7 @@
     assertNull(url);
     
     // This file should exist
-    url = Resource.getAsURL("org/sonews/daemon/Main.class");
+    url = Resource.getAsURL("org/sonews/Main.class");
     assertNotNull(url);
   }
   
@@ -55,7 +55,7 @@
     stream = Resource.getAsStream("this is bullshit");
     assertNull(stream);
     
-    stream = Resource.getAsStream("org/sonews/daemon/Main.class");
+    stream = Resource.getAsStream("org/sonews/Main.class");
     assertNotNull(stream);
   }
   
@@ -69,10 +69,10 @@
     str = Resource.getAsString("this is bullshit", true);
     assertNull(str);
     
-    str = Resource.getAsString("org/sonews/daemon/Main.class", true);
+    str = Resource.getAsString("org/sonews/Main.class", true);
     assertNotNull(str);
     
-    str = Resource.getAsString("org/sonews/daemon/Main.class", false);
+    str = Resource.getAsString("org/sonews/Main.class", false);
     assertNotNull(str);
     assertEquals(str.indexOf("\n"), -1);
   }