diff options
author | spectrejan <kraemer.jn@gmail.com> | 2015-08-30 20:08:54 +0200 |
---|---|---|
committer | spectrejan <kraemer.jn@gmail.com> | 2015-08-30 20:08:54 +0200 |
commit | ee332ff7e4554e6a635bea35b5e1284e698e202c (patch) | |
tree | 18db24ea7b394b427cb94746e5de89acfa4b2f10 /gr-blocks/python | |
parent | d063b05c7e7c965f77042a6eec9bc4c025202577 (diff) |
+ Fixed Bug in qa_multiply_matrix_ff test_005_t
Diffstat (limited to 'gr-blocks/python')
-rwxr-xr-x | gr-blocks/python/blocks/qa_multiply_matrix_ff.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-blocks/python/blocks/qa_multiply_matrix_ff.py b/gr-blocks/python/blocks/qa_multiply_matrix_ff.py index fdf020552a..357120b34e 100755 --- a/gr-blocks/python/blocks/qa_multiply_matrix_ff.py +++ b/gr-blocks/python/blocks/qa_multiply_matrix_ff.py @@ -144,9 +144,9 @@ class test_multiply_matrix_ff (gr_unittest.TestCase): tag2.offset = 0 tag2.key = pmt.intern("in2") tag2.value = pmt.PMT_T - self.run_once(X_in, A, tpp=999, tags=(tag1, tag2)) - self.assertTrue(pmt.equal(tag1.key, self.the_tags[1][0].key)) - self.assertTrue(pmt.equal(tag2.key, self.the_tags[0][0].key)) + self.run_once(X_in, A, tpp=gr.TPP_ONE_TO_ONE, tags=(tag1, tag2)) + self.assertTrue(pmt.equal(tag1.key, self.the_tags[0][0].key)) + self.assertTrue(pmt.equal(tag2.key, self.the_tags[1][0].key)) #def test_006_t (self): #""" Message passing """ |