Match channel spacing to resource management unit.

- for ease of testing lambda resource

Change-Id: I1bfa5fb203d938779165607f087192d16dbb14bb
diff --git a/cli/src/main/java/org/onosproject/cli/net/TestAllocateResource.java b/cli/src/main/java/org/onosproject/cli/net/TestAllocateResource.java
index 8099d74..b5c2199 100644
--- a/cli/src/main/java/org/onosproject/cli/net/TestAllocateResource.java
+++ b/cli/src/main/java/org/onosproject/cli/net/TestAllocateResource.java
@@ -54,11 +54,11 @@
     private int nIntendId = 42;
 
 
-    @Argument(index = 0, name = "deviceIdString", description = "Device ID",
+    @Argument(index = 0, name = "deviceId", description = "Device ID",
             required = true, multiValued = false)
     String deviceIdStr = null;
 
-    @Argument(index = 1, name = "portNumberString", description = "PortNumber",
+    @Argument(index = 1, name = "portNumber", description = "PortNumber",
             required = true, multiValued = false)
     String portNumberStr = null;
 
@@ -85,7 +85,7 @@
 
     private OchSignal createLambda(int i) {
         return new OchSignal(GridType.FLEX,
-                             ChannelSpacing.CHL_12P5GHZ,
+                             ChannelSpacing.CHL_6P25GHZ,
                              i,
                              1);
     }