diff options
author | jcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-11-27 18:55:56 +0000 |
---|---|---|
committer | jcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-11-27 18:55:56 +0000 |
commit | b07df82d5536f65ad50d3029d69bd27cd25235de (patch) | |
tree | 6886f3068dace87cd39f4ac97e5f1eb71c19cf38 /gr-audio-alsa/src | |
parent | ffce4b9e4839413ce16484b851cf17a2bb6f1c4a (diff) |
Implements ticket:206
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7041 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-audio-alsa/src')
-rwxr-xr-x | gr-audio-alsa/src/qa_alsa.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-audio-alsa/src/qa_alsa.py b/gr-audio-alsa/src/qa_alsa.py index a5381a2975..f2a480a50b 100755 --- a/gr-audio-alsa/src/qa_alsa.py +++ b/gr-audio-alsa/src/qa_alsa.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright 2005 Free Software Foundation, Inc. +# Copyright 2005,2007 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -26,10 +26,10 @@ import audio_alsa class qa_alsa (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_nop (self): """Just see if we can import the module... |