diff options
author | Volker Schroer <3470424+dl1ksv@users.noreply.github.com> | 2020-10-22 16:46:36 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-10-23 09:10:53 -0400 |
commit | 159f4eb7d7b2858fce0f99a3765d8ad548b8c4a2 (patch) | |
tree | 6c43fb42f90db9503687d415202d4979fd0323fb /gr-qtgui/python/qtgui | |
parent | 912d48596569812ddcd05539bc7086617971b65e (diff) |
Update qa_qtgui.py
Test fails with
File "/home/schroer/gnuradiocomponents/gnuradio-volker/gr-qtgui/python/qtgui/qa_qtgui.py", line 78, in test13
self.qtsnk = qtgui.eye_sink_c(1024, 1, "Test", 1, None)
TypeError: __init__(): incompatible constructor arguments. The following argument types are supported:
1. gnuradio.qtgui.qtgui_python.eye_sink_c(size: int, samp_rate: float, nconnections: int = 1, parent: gnuradio.qtgui.qtgui_python.QWidget = None)
Invoked with: 1024, 1, 'Test', 1, None
Diffstat (limited to 'gr-qtgui/python/qtgui')
-rw-r--r-- | gr-qtgui/python/qtgui/qa_qtgui.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-qtgui/python/qtgui/qa_qtgui.py b/gr-qtgui/python/qtgui/qa_qtgui.py index bed7272387..12f82554f0 100644 --- a/gr-qtgui/python/qtgui/qa_qtgui.py +++ b/gr-qtgui/python/qtgui/qa_qtgui.py @@ -72,10 +72,10 @@ class test_qtgui(gr_unittest.TestCase): self.qtsnk = qtgui.histogram_sink_f(1024, 100, -1, 1, "Test", 1, None) def test13(self): - self.qtsnk = qtgui.eye_sink_c(1024, 1, "Test", 1, None) + self.qtsnk = qtgui.eye_sink_f(1024, 1, 1, None) - def test13(self): - self.qtsnk = qtgui.eye_sink_c(1024, 1, "Test", 1, None) + def test14(self): + self.qtsnk = qtgui.eye_sink_c(1024, 1, 1, None) if __name__ == '__main__': gr_unittest.run(test_qtgui, "test_qtgui.xml") |