diff options
author | Marcus Müller <marcus@hostalia.de> | 2020-06-19 11:01:52 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-06-19 11:05:38 +0200 |
commit | 98348e37209aa7daeb96fe5ead815e5b083dc6da (patch) | |
tree | 668a8c1a0fd4ebbda226b87e543b607c34d7d3ee /gr-blocks/python | |
parent | 518aa489498ec692dee51bb69936b620660ba113 (diff) |
blocks: qa_moving_average used tuple eq. for lists in pybind11
Diffstat (limited to 'gr-blocks/python')
-rw-r--r-- | gr-blocks/python/blocks/qa_moving_average.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/python/blocks/qa_moving_average.py b/gr-blocks/python/blocks/qa_moving_average.py index 4319b40b01..eb03a54ffd 100644 --- a/gr-blocks/python/blocks/qa_moving_average.py +++ b/gr-blocks/python/blocks/qa_moving_average.py @@ -138,7 +138,7 @@ class test_moving_average(gr_unittest.TestCase): ref_data = ref_dst.data() # make sure result is close to zero - self.assertTupleEqual(dut_data, ref_data) + self.assertEqual(dut_data, ref_data) def test_complex_scalar(self): tb = self.tb |