summaryrefslogtreecommitdiff
path: root/gr-blocks/python
diff options
context:
space:
mode:
authorTim O'Shea <tim.oshea753@gmail.com>2014-04-28 11:59:50 -0400
committerTim O'Shea <tim.oshea753@gmail.com>2014-04-28 11:59:50 -0400
commitdd17d80c5b0c81bddf71c802dc47310a61ff4aa3 (patch)
tree493d175ecad21de72c396f5b2c4183820700c088 /gr-blocks/python
parenta0dd092544957df1b00b0a2ca692716253b2e4fa (diff)
runtime: update message port qa to account for new system port
Diffstat (limited to 'gr-blocks/python')
-rwxr-xr-xgr-blocks/python/blocks/qa_pdu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/python/blocks/qa_pdu.py b/gr-blocks/python/blocks/qa_pdu.py
index 81cd8cf71c..5a29e04735 100755
--- a/gr-blocks/python/blocks/qa_pdu.py
+++ b/gr-blocks/python/blocks/qa_pdu.py
@@ -48,7 +48,7 @@ class test_pdu(gr_unittest.TestCase):
# Test that the right number of ports exist.
pi = snk3.message_ports_in()
po = snk3.message_ports_out()
- self.assertEqual(pmt.length(pi), 0)
+ self.assertEqual(pmt.length(pi), 1) #system port is defined automatically
self.assertEqual(pmt.length(po), 1)
self.tb.connect(src, snk)