diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-05-22 22:34:26 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-05-22 22:34:26 -0700 |
commit | d54dd6cfeb00ad3670da31236191159035a82a77 (patch) | |
tree | 1d025e9e34a10a6573f32127bc2b1c66fda54884 /gr-blocks/python | |
parent | fa75f18dc4d347bd7d5a1595b162395f773858d3 (diff) | |
parent | 081f65bb18b5ec8e4824d0e1cf7de31f40f70312 (diff) |
Merge branch 'master' into next
Diffstat (limited to 'gr-blocks/python')
-rw-r--r-- | gr-blocks/python/qa_message_tags.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-blocks/python/qa_message_tags.py b/gr-blocks/python/qa_message_tags.py index 952c699455..ad4d2104e6 100644 --- a/gr-blocks/python/qa_message_tags.py +++ b/gr-blocks/python/qa_message_tags.py @@ -11,6 +11,7 @@ class test_message_tags (gr_unittest.TestCase): rx_msgq = gr.msg_queue() for d in data: tx_msgq.insert_tail(gr.message_from_string(d)) + tx_msgq.insert_tail(gr.message(1)) # send EOF tb = gr.top_block() src = blocks.message_source(gr.sizeof_char, tx_msgq, "packet_length") snk = blocks.message_sink(gr.sizeof_char, rx_msgq, False, "packet_length") |