diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-17 17:03:18 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-17 17:13:08 -0400 |
commit | 701d844c1624ac51e3da4f0ef0f5bb346358cab8 (patch) | |
tree | 6ea626d5fe16f884dec9e689d02915634969bebc /gr-blocks/python/qa_cpp_py_binding.py | |
parent | d4f6b86a9bdea09c2c158b9982559a727f8c6a0b (diff) |
blocks: moved ctrlport_probes to gr-blocks. Removed from gnuradio-core.
Diffstat (limited to 'gr-blocks/python/qa_cpp_py_binding.py')
-rwxr-xr-x | gr-blocks/python/qa_cpp_py_binding.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/python/qa_cpp_py_binding.py b/gr-blocks/python/qa_cpp_py_binding.py index 950f21b9f7..c3d6a3f3bc 100755 --- a/gr-blocks/python/qa_cpp_py_binding.py +++ b/gr-blocks/python/qa_cpp_py_binding.py @@ -137,8 +137,8 @@ class test_cpp_py_binding(gr_unittest.TestCase): data = range(1,9) self.src = blocks.vector_source_c(data) - self.p1 = gr.ctrlport_probe_c("aaa","C++ exported variable") - self.p2 = gr.ctrlport_probe_c("bbb","C++ exported variable") + self.p1 = blocks.ctrlport_probe_c("aaa","C++ exported variable") + self.p2 = blocks.ctrlport_probe_c("bbb","C++ exported variable") probe_name = self.p2.alias() self.tb.connect(self.src, self.p1) |