[hornetq-commits] JBoss hornetq SVN: r9290 - trunk/tests/src/org/hornetq/tests/integration/journal.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Jun 3 10:03:57 EDT 2010


Author: clebert.suconic at jboss.com
Date: 2010-06-03 10:03:57 -0400 (Thu, 03 Jun 2010)
New Revision: 9290

Modified:
   trunk/tests/src/org/hornetq/tests/integration/journal/NIOJournalCompactTest.java
Log:
just formatting

Modified: trunk/tests/src/org/hornetq/tests/integration/journal/NIOJournalCompactTest.java
===================================================================
--- trunk/tests/src/org/hornetq/tests/integration/journal/NIOJournalCompactTest.java	2010-06-03 06:04:22 UTC (rev 9289)
+++ trunk/tests/src/org/hornetq/tests/integration/journal/NIOJournalCompactTest.java	2010-06-03 14:03:57 UTC (rev 9290)
@@ -766,26 +766,26 @@
 
       file.mkdir();
    }
-   
+
    protected void tearDown() throws Exception
    {
-      
+
       File testDir = new File(getTestDir());
-      
+
       File files[] = testDir.listFiles(new FilenameFilter()
       {
-         
+
          public boolean accept(File dir, String name)
          {
             return name.startsWith(filePrefix) && name.endsWith(fileExtension);
          }
       });
-      
+
       for (File file : files)
       {
-         assertEquals("File "  + file + " doesn't have the expected number of bytes", fileSize, file.length());
+         assertEquals("File " + file + " doesn't have the expected number of bytes", fileSize, file.length());
       }
-      
+
       super.tearDown();
    }
 



More information about the hornetq-commits mailing list