diff options
author | jcorgan | 2007-11-27 19:15:30 +0000 |
---|---|---|
committer | jcorgan | 2007-11-27 19:15:30 +0000 |
commit | 7e5ff593896c6c1d832c17a7e0d0eb42f2277d9d (patch) | |
tree | 98879d1a1b4f02468cc1578c08e032164db9f6f2 /gr-trellis/src/python/qa_trellis.py | |
parent | b07df82d5536f65ad50d3029d69bd27cd25235de (diff) | |
download | gnuradio-7e5ff593896c6c1d832c17a7e0d0eb42f2277d9d.tar.gz gnuradio-7e5ff593896c6c1d832c17a7e0d0eb42f2277d9d.tar.bz2 gnuradio-7e5ff593896c6c1d832c17a7e0d0eb42f2277d9d.zip |
Implements ticket:207
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7042 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-trellis/src/python/qa_trellis.py')
-rwxr-xr-x | gr-trellis/src/python/qa_trellis.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-trellis/src/python/qa_trellis.py b/gr-trellis/src/python/qa_trellis.py index 27cea8e87..306bf994d 100755 --- a/gr-trellis/src/python/qa_trellis.py +++ b/gr-trellis/src/python/qa_trellis.py @@ -26,10 +26,10 @@ import trellis class qa_trellis (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_001_fsm (self): I = 2 |