diff options
author | Josh Blum | 2009-09-03 15:46:07 -0700 |
---|---|---|
committer | Josh Blum | 2009-09-03 15:46:07 -0700 |
commit | 6b47cc3dc64d86cb19eb28ab4843a0f278db6d0a (patch) | |
tree | f7e40997de014d8734d27bfc14a5b0d032f7c1d3 /grc/base/Block.py | |
parent | 490b1195935007031759ec815b1d4a3046a5907a (diff) | |
download | gnuradio-6b47cc3dc64d86cb19eb28ab4843a0f278db6d0a.tar.gz gnuradio-6b47cc3dc64d86cb19eb28ab4843a0f278db6d0a.tar.bz2 gnuradio-6b47cc3dc64d86cb19eb28ab4843a0f278db6d0a.zip |
we dont use test() -> remove it
Diffstat (limited to 'grc/base/Block.py')
-rw-r--r-- | grc/base/Block.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/grc/base/Block.py b/grc/base/Block.py index a9dae660a..fc501205f 100644 --- a/grc/base/Block.py +++ b/grc/base/Block.py @@ -116,14 +116,6 @@ class Block(Element): except AssertionError: raise Exception, 'Key "%s" already exists in sinks'%key #store the port self.get_sinks().append(sink) - #begin the testing - self.test() - - def test(self): - """ - Call test on all children. - """ - map(lambda c: c.test(), self.get_params() + self.get_sinks() + self.get_sources()) def get_enabled(self): """ |