Author: jvanzyl
Date: Sat Dec  2 16:30:58 2006
New Revision: 481675

URL: http://svn.apache.org/viewvc?view=rev&rev=481675
Log:
o fix tests

Modified:
    
maven/plugins/trunk/maven-pmd-plugin/src/test/java/org/apache/maven/plugin/pmd/PmdReportTest.java

Modified: 
maven/plugins/trunk/maven-pmd-plugin/src/test/java/org/apache/maven/plugin/pmd/PmdReportTest.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pmd-plugin/src/test/java/org/apache/maven/plugin/pmd/PmdReportTest.java?view=diff&rev=481675&r1=481674&r2=481675
==============================================================================
--- 
maven/plugins/trunk/maven-pmd-plugin/src/test/java/org/apache/maven/plugin/pmd/PmdReportTest.java
 (original)
+++ 
maven/plugins/trunk/maven-pmd-plugin/src/test/java/org/apache/maven/plugin/pmd/PmdReportTest.java
 Sat Dec  2 16:30:58 2006
@@ -71,10 +71,10 @@
         //check if there's a link to the JXR files
         String str =
             readFile( new File( getBasedir(), 
"target/test/unit/default-configuration/target/site/pmd.html" ) );
-        assertTrue( str.toLowerCase().indexOf( 
"/xref/def/configuration/AppSample.html#31".toLowerCase() ) != -1 );
 
-        assertTrue( str.toLowerCase().indexOf( 
"/xref/def/configuration/App.html#12".toLowerCase() ) != -1 );
+        assertTrue( str.indexOf( "/xref/def/configuration/App.html#31" ) != -1 
);
 
+        assertTrue( str.indexOf( "/xref/def/configuration/AppSample.html#45" ) 
!= -1 );
     }
 
     /**


Reply via email to