Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / statistics / StatisticsCountersTest.java
index d586a24dcdeeeb3a0560cac375ff0d0b47460246..fbe48b17e7ff472496693fa9bf5f9f6808446751 100644 (file)
@@ -15,7 +15,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * General tests for StatisticsCounters class 
+ * General tests for StatisticsCounters class
  * @author madamjak
  *
  */
@@ -54,7 +54,7 @@ public class StatisticsCountersTest {
             } else {
                 Assert.assertNull("Wrong - not enabled counter give not null value", statCounters.getCounter(cet));
             }
-            
+
         }
         statCounters.resetCounters();
         for(CounterEventTypes cet : CounterEventTypes.values()){
@@ -103,9 +103,9 @@ public class StatisticsCountersTest {
         Assert.assertEquals("Wrong - bad logReportPeriod", testDelay, statCounters.getLogReportPeriod());
         statCounters.stopLogReport();
         Assert.assertFalse("Wrong - logRepoter is running", statCounters.isRunLogReport());
-        statCounters.startLogReport(statCounters.MINIMAL_LOG_REPORT_PERIOD / 2);
+        statCounters.startLogReport(StatisticsCounters.MINIMAL_LOG_REPORT_PERIOD / 2);
         Assert.assertTrue("Wrong - logRepoter is not running", statCounters.isRunLogReport());
-        Assert.assertEquals("Wrong - bad logReportPeriod", statCounters.MINIMAL_LOG_REPORT_PERIOD, statCounters.getLogReportPeriod());
+        Assert.assertEquals("Wrong - bad logReportPeriod", StatisticsCounters.MINIMAL_LOG_REPORT_PERIOD, statCounters.getLogReportPeriod());
         statCounters.stopCounting();
         Assert.assertFalse("Wrong - logRepoter is running", statCounters.isRunLogReport());
     }