summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/python/gnuradio
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/python/gnuradio')
-rw-r--r--gnuradio-runtime/python/gnuradio/gr/qa_flowgraph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/python/gnuradio/gr/qa_flowgraph.py b/gnuradio-runtime/python/gnuradio/gr/qa_flowgraph.py
index 893b02cb07..a59d0437a5 100644
--- a/gnuradio-runtime/python/gnuradio/gr/qa_flowgraph.py
+++ b/gnuradio-runtime/python/gnuradio/gr/qa_flowgraph.py
@@ -11,7 +11,7 @@
import time
import pmt
-from gnuradio import gr, gr_unittest, blocks
+from gnuradio import gr, gr_unittest, blocks, pdu
class test_flowgraph (gr_unittest.TestCase):
@@ -27,7 +27,7 @@ class test_flowgraph (gr_unittest.TestCase):
self.tb.start()
self.tb.lock()
- rem = blocks.pdu_remove(pmt.intern('foo'))
+ rem = pdu.pdu_remove(pmt.intern('foo'))
dbg = blocks.message_debug()
self.tb.msg_connect((rem, 'pdus'), (dbg, 'store'))