X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnuradio-core%2Fsrc%2Fpython%2Fgnuradio%2Fgr%2Fqa_fractional_interpolator.py;h=4466e8aab6b1bb6d71bf424052b076654ee6e4ae;hb=HEAD;hp=afeebb55bdee80ed4e9f7d8d7cb7b28174e9b68a;hpb=75f9f9c4373fe6ec5e88045151614c3ff3ad983e;p=debian%2Fgnuradio diff --git a/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py b/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py index afeebb55..4466e8aa 100755 --- a/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py +++ b/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py @@ -6,7 +6,7 @@ # # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) +# the Free Software Foundation; either version 3, or (at your option) # any later version. # # GNU Radio is distributed in the hope that it will be useful, @@ -25,10 +25,10 @@ from gnuradio import gr, gr_unittest class test_fractional_resampler (gr_unittest.TestCase): def setUp(self): - self.fg = gr.flow_graph() + self.tb = gr.top_block() def tearDown(self): - self.fg = None + self.tb = None def test_000_make(self): op = gr.fractional_interpolator_ff(0.0, 1.0)