diff options
author | Josh Blum | 2013-09-15 22:01:30 -0700 |
---|---|---|
committer | Josh Blum | 2013-09-15 22:01:30 -0700 |
commit | c4b43b3521f373bc91cd3165b96ced0cb9cf65c1 (patch) | |
tree | 68254ad7bd602e3de98b441ff7e22f050dd73dee /tests | |
parent | 3cf31976f415aaa3799edd307e40bc2e25f3e690 (diff) | |
parent | 75d2c6cc485714efe4b136ade34e78a7b0fb2744 (diff) | |
download | sandhi-c4b43b3521f373bc91cd3165b96ced0cb9cf65c1.tar.gz sandhi-c4b43b3521f373bc91cd3165b96ced0cb9cf65c1.tar.bz2 sandhi-c4b43b3521f373bc91cd3165b96ced0cb9cf65c1.zip |
Merge branch 'config_work' into gr_update
Diffstat (limited to 'tests')
-rw-r--r-- | tests/thread_pool_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/thread_pool_test.py b/tests/thread_pool_test.py index 58a00fe..56e0640 100644 --- a/tests/thread_pool_test.py +++ b/tests/thread_pool_test.py @@ -33,7 +33,8 @@ class ThreadPoolTest(unittest.TestCase): c = gras.ThreadPoolConfig() tp = gras.ThreadPool(c) - vec_source.set_thread_pool(tp) + vec_source.global_config().thread_pool = tp + vec_source.commit_config() tb.connect(vec_source, vec_sink) tb.run() |