You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/13 23:24:36 UTC

svn commit: r1135291 - in /commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath: ClassPathTestCase.java filter/FiltersTestCase.java

Author: simonetripodi
Date: Mon Jun 13 21:24:35 2011
New Revision: 1135291

URL: http://svn.apache.org/viewvc?rev=1135291&view=rev
Log:
fixed broken test

Modified:
    commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/ClassPathTestCase.java
    commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/filter/FiltersTestCase.java

Modified: commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/ClassPathTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/ClassPathTestCase.java?rev=1135291&r1=1135290&r2=1135291&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/ClassPathTestCase.java (original)
+++ commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/ClassPathTestCase.java Mon Jun 13 21:24:35 2011
@@ -52,7 +52,7 @@ public final class ClassPathTestCase
             @Override
             public void configure()
             {
-                ifMatches( inSubpackage( "org.nnsoft.commons.meiyo.classpath" ).
+                ifMatches( inSubpackage( "org.apache.commons.meiyo.classpath" ).
                                and( isPublic() )
                                .and( not( isAbstract() ) )
                                .and( not( isAnnotation() ) )

Modified: commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/filter/FiltersTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/filter/FiltersTestCase.java?rev=1135291&r1=1135290&r2=1135291&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/filter/FiltersTestCase.java (original)
+++ commons/sandbox/meiyo/trunk/src/test/java/org/apache/commons/meiyo/classpath/filter/FiltersTestCase.java Mon Jun 13 21:24:35 2011
@@ -58,14 +58,14 @@ public final class FiltersTestCase
 
     public void matchesInPackage()
     {
-        Filter inMeiyoPackage = inPackage( "org.nnsoft.commons.meiyo.classpath" );
+        Filter inMeiyoPackage = inPackage( "org.apache.commons.meiyo.classpath" );
         assert inMeiyoPackage.matches( ClassPathScanner.class );
         assert !inMeiyoPackage.matches( List.class );
     }
 
     public void matchesInSubPackage()
     {
-        Filter inMeiyoPackage = inSubpackage( "org.nnsoft.commons.meiyo.classpath" );
+        Filter inMeiyoPackage = inSubpackage( "org.apache.commons.meiyo.classpath" );
         assert inMeiyoPackage.matches( Filters.class );
         assert !inMeiyoPackage.matches( List.class );
     }