Merge branch 'master' of github.com:floodlight/oftest

Conflicts:
	tests/profiles/noing.py
Resolved with --theirs
diff --git a/tests/bsn_ipmask.py b/tests/bsn_ipmask.py
index 606f7ab..0609582 100644
--- a/tests/bsn_ipmask.py
+++ b/tests/bsn_ipmask.py
@@ -77,8 +77,8 @@
 
     def bsn_get_ip_mask(self, index):
         """
-        Use the BSN_GET_IP_MASK vendor command to get the current IP mask for
-        the given wildcard index
+        Use the BSN_GET_IP_MASK_REQUEST vendor command to get the current IP mask
+        for the given wildcard index
         """
         m = message.vendor()
         m.vendor = 0x005c16c7
@@ -88,8 +88,7 @@
         m, r = self.controller.poll(ofp.OFPT_VENDOR, 2)
         self.assertEqual(m.vendor, 0x005c16c7, "Wrong vendor ID")
         x = struct.unpack("!LBBBBL", m.data)
-        # FIXME:  For now, accept 1 or 2 as subtype; will become 2
-        self.assertTrue(x[0] == 1 or x[0] == 2, "Wrong subtype")
+        self.assertEqual(x[0], 2, "Wrong subtype")
         self.assertEqual(x[1], index, "Wrong index")
         return x[5]
 
diff --git a/tests/profiles/noing.py b/tests/profiles/noing.py
index d7cbc51..bfd1c70 100644
--- a/tests/profiles/noing.py
+++ b/tests/profiles/noing.py
@@ -15,6 +15,6 @@
     "ModifyL2DstIngress",
     "DirectMC",
     "AllPlusIngress",
+    "FloodPlusIngress",
     "ModifyVIDToIngress",
-    "FloodPlusIngress"
 ]