Merge into master from pull request #130:
verify_packet_in with in_port as None. (https://github.com/floodlight/oftest/pull/130)
diff --git a/src/python/oftest/testutils.py b/src/python/oftest/testutils.py
index 57201ce..3ef9486 100644
--- a/src/python/oftest/testutils.py
+++ b/src/python/oftest/testutils.py
@@ -1578,7 +1578,7 @@
# Found a matching message
break
- test.assertTrue(msg is not None, 'Packet in message not received on port %d' % in_port)
+ test.assertTrue(msg is not None, 'Packet in message not received on port %r' % in_port)
return msg
def verify_no_packet_in(test, data, in_port, controller=None):