Clean up command naming
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / karaf / ResetSessionStatsCommandTest.java
@@ -17,11 +17,11 @@ import org.mockito.InjectMocks;
 import org.opendaylight.openflowplugin.impl.statistics.ofpspecific.SessionStatistics;
 
 /**
- * Test for {@link ResetSessionStatsComandProvider}.
+ * Test for {@link ResetSessionStatsCommand}.
  */
-class ResetSessionStatsComandProviderTest extends AbstractKarafTest {
+class ResetSessionStatsCommandTest extends AbstractCommandTest {
     @InjectMocks
-    private ResetSessionStatsComandProvider resetSessionStatsCommand;
+    private ResetSessionStatsCommand resetSessionStatsCommand;
     private static final Function<String, Boolean> CHECK_NO_ACTIVITY_FUNCTION = String::isEmpty;
 
     @Override
@@ -31,7 +31,7 @@ class ResetSessionStatsComandProviderTest extends AbstractKarafTest {
     }
 
     /**
-     * Test for {@link ResetSessionStatsComandProvider#execute()} when no stats were touched before.
+     * Test for {@link ResetSessionStatsCommand#execute()} when no stats were touched before.
      */
     @Test
     void resetNoActivity() {
@@ -41,7 +41,7 @@ class ResetSessionStatsComandProviderTest extends AbstractKarafTest {
     }
 
     /**
-     * Test for {@link ResetSessionStatsComandProvider#execute()} when stats were touched before.
+     * Test for {@link ResetSessionStatsCommand#execute()} when stats were touched before.
      */
     @Test
     void resetHavingActivity() {