From: Paul Brossier Date: Sun, 1 Dec 2013 21:09:52 +0000 (-0500) Subject: ./tests/test_list_processors.py: fix testHasSomeDecoders X-Git-Tag: 0.5.2~19 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=6284fd0800b3a68f949f538728bddcad307b6ae5;p=timeside.git ./tests/test_list_processors.py: fix testHasSomeDecoders --- diff --git a/tests/test_list_processors.py b/tests/test_list_processors.py index 6b33ab4..bc817f2 100755 --- a/tests/test_list_processors.py +++ b/tests/test_list_processors.py @@ -9,8 +9,8 @@ class TestListCoreProcessors(unittest.TestCase): def testHasSomeDecoders(self): "has some decoders" - import timeside.encoder - procs = timeside.core.processors(timeside.api.IEncoder) + import timeside.decoder + procs = timeside.core.processors(timeside.api.IDecoder) self.assertNotEquals(len(procs), 0) def testHasSomeEncoders(self):