summaryrefslogtreecommitdiff
path: root/gr-blocks/python/qa_message.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-03-06 12:23:05 -0500
committerTom Rondeau <trondeau@vt.edu>2013-03-06 12:23:05 -0500
commita770feec38cd8a188a4c4c88f34d513155b4b539 (patch)
treeac5a0263daf24c8a78868a307df68a30c9890b0b /gr-blocks/python/qa_message.py
parenta08afb0b0166cab961982f174a5cf672393b5198 (diff)
blocks: removing blocks moved into gr-blocks:
message_strobe, message_debug, message_source, message_sink, message_burst_source, peak_detector, moving_average.
Diffstat (limited to 'gr-blocks/python/qa_message.py')
-rwxr-xr-xgr-blocks/python/qa_message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/python/qa_message.py b/gr-blocks/python/qa_message.py
index 551fdd6259..a556f65cee 100755
--- a/gr-blocks/python/qa_message.py
+++ b/gr-blocks/python/qa_message.py
@@ -130,7 +130,7 @@ class test_message(gr_unittest.TestCase):
self.assertEquals(tuple(map(ord, '0123456789')), dst.data())
def test_debug_401(self):
- msg = pmt.pmt_intern("TESTING")
+ msg = pmt.intern("TESTING")
src = blocks.message_strobe(msg, 500)
snk = blocks.message_debug()
@@ -142,7 +142,7 @@ class test_message(gr_unittest.TestCase):
tb.wait()
rec_msg = snk.get_message(0)
- self.assertTrue(pmt.pmt_eqv(rec_msg, msg))
+ self.assertTrue(pmt.eqv(rec_msg, msg))
if __name__ == '__main__':