Removed tcp ports in SDNIP matching test CASE2000

Change-Id: Ic9cd7b0c5c3b392bf0f1a82c832d84dbb1e3b6de
diff --git a/TestON/tests/FUNCintent/FUNCintent.py b/TestON/tests/FUNCintent/FUNCintent.py
index eff6b16..49c2969 100644
--- a/TestON/tests/FUNCintent/FUNCintent.py
+++ b/TestON/tests/FUNCintent/FUNCintent.py
@@ -746,6 +746,7 @@
             ip2 = main.Mininet1.getIPAddress( 'h9')
 
         ipProto = main.params[ 'SDNIP' ][ 'icmpProto' ]
+        # Uneccessary, not including this in the selectors
         tcp1 = main.params[ 'SDNIP' ][ 'srcPort' ]
         tcp2 = main.params[ 'SDNIP' ][ 'dstPort' ]
 
@@ -761,9 +762,7 @@
                                            ethType="IPV4",
                                            ipProto=ipProto,
                                            ip1=ip1,
-                                           ip2=ip2,
-                                           tcp1=tcp1,
-                                           tcp2=tcp2 )
+                                           ip2=ip2 )
 
         utilities.assert_equals( expect=main.TRUE,
                                  actual=stepResult,