Author: juanpablo
Date: Tue Mar  5 23:02:46 2013
New Revision: 1453072

URL: http://svn.apache.org/r1453072
Log:
one last tweak to properly nest lists..

Modified:
    incubator/jspwiki/trunk/tests/org/apache/wiki/site/SiteGeneratorTest.java

Modified: 
incubator/jspwiki/trunk/tests/org/apache/wiki/site/SiteGeneratorTest.java
URL: 
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/tests/org/apache/wiki/site/SiteGeneratorTest.java?rev=1453072&r1=1453071&r2=1453072&view=diff
==============================================================================
--- incubator/jspwiki/trunk/tests/org/apache/wiki/site/SiteGeneratorTest.java 
(original)
+++ incubator/jspwiki/trunk/tests/org/apache/wiki/site/SiteGeneratorTest.java 
Tue Mar  5 23:02:46 2013
@@ -123,10 +123,10 @@ public class SiteGeneratorTest extends T
         String i18nFile = StringUtils.replace( file, ".properties", "_" + i18n 
+ ".properties" );
         Map< String, Integer > diff = TranslationsCheck.diff( file, i18nFile );
         int dup = TranslationsCheck.detectDuplicates( i18nFile );
-        sb.append( "  * " ).append( i18nFile ).append( "\n" )
-          .append( "      * Missing: " ).append( diff.get( "missing" ) 
).append( "\n" )
-          .append( "      * Outdated: " ).append( diff.get( "outdated" ) 
).append( "\n" )
-          .append( "      * Duplicated: " ).append( dup ).append( "\n" );
+        sb.append( "    * " ).append( i18nFile ).append( "\n" )
+          .append( "        * Missing: " ).append( diff.get( "missing" ) 
).append( "\n" )
+          .append( "        * Outdated: " ).append( diff.get( "outdated" ) 
).append( "\n" )
+          .append( "        * Duplicated: " ).append( dup ).append( "\n" );
         TranslationsCheck.clearDuplicates();
     }
     


Reply via email to