diff options
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) |