Enhance code documentation and add TODOs
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / test / java / org / opendaylight / controller / cluster / raft / behaviors / FollowerTest.java
index 1cf178bb006ad37d4c4bd84fa950dd81d7dece36..b7c371dd39722986b7601bec8cce1e0127ec71d4 100644 (file)
@@ -378,9 +378,12 @@ public class FollowerTest extends AbstractRaftActorBehaviorTest {
             assertEquals(4, log.last().getIndex() + 1);
             assertNotNull(log.get(2));
 
-            // Check that the entry at index 2 has the new data
+
             assertEquals("one", log.get(1).getData());
+
+            // Check that the entry at index 2 has the new data
             assertEquals("two-1", log.get(2).getData());
+
             assertEquals("three", log.get(3).getData());
             assertNotNull(log.get(3));