Add checkstyle rule UpperEll and fix all code accordingly.
[controller.git] / opendaylight / sal / api / src / test / java / org / opendaylight / controller / sal / flowprogrammer / FlowTest.java
index 8f09de9aef52dc9d1f01c247d12419b500020c4a..e644b0d834c0ed8cf70b52d8746661b734145852 100644 (file)
@@ -39,7 +39,7 @@ public class FlowTest {
 
     @Test
     public void testFlowEquality() throws Exception {
-        Node node = NodeCreator.createOFNode(1055l);
+        Node node = NodeCreator.createOFNode(1055L);
         Flow flow1 = getSampleFlowV6(node);
         Flow flow2 = getSampleFlowV6(node);
         Flow flow3 = getSampleFlow(node);
@@ -69,7 +69,7 @@ public class FlowTest {
 
     @Test
     public void testFlowCloning() throws UnknownHostException {
-        Node node = NodeCreator.createOFNode(55l);
+        Node node = NodeCreator.createOFNode(55L);
         Flow flow1 = getSampleFlowV6(node);
         Flow flow2 = flow1.clone();
 
@@ -81,7 +81,7 @@ public class FlowTest {
 
     @Test
     public void testFlowActions() throws UnknownHostException {
-        Node node = NodeCreator.createOFNode(55l);
+        Node node = NodeCreator.createOFNode(55L);
         Flow flow = getSampleFlowV6(node);
 
         List<Action> actions = flow.getActions();