mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
testsuite/test_registry.py (RegistryTest.testPluginList): Look for staticelements, not gstcoreelements.
Original commit message from CVS: 2005-12-05 Andy Wingo <wingo@pobox.com> * testsuite/test_registry.py (RegistryTest.testPluginList): Look for staticelements, not gstcoreelements.
This commit is contained in:
parent
5f047ea7a7
commit
8a6b78b57e
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-12-05 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* testsuite/test_registry.py (RegistryTest.testPluginList): Look
|
||||||
|
for staticelements, not gstcoreelements.
|
||||||
|
|
||||||
=== release 0.9.7 ===
|
=== release 0.9.7 ===
|
||||||
|
|
||||||
2005-12-01 <thomas (at) apestaart (dot) org>
|
2005-12-01 <thomas (at) apestaart (dot) org>
|
||||||
|
|
|
@ -35,7 +35,7 @@ class RegistryTest(TestCase):
|
||||||
|
|
||||||
def testPluginList(self):
|
def testPluginList(self):
|
||||||
names = map(lambda p: p.get_name(), self.plugins)
|
names = map(lambda p: p.get_name(), self.plugins)
|
||||||
self.failUnless('gstcoreelements' in names)
|
self.failUnless('staticelements' in names)
|
||||||
|
|
||||||
def testGetPathList(self):
|
def testGetPathList(self):
|
||||||
# FIXME: this returns an empty list; probably due to core;
|
# FIXME: this returns an empty list; probably due to core;
|
||||||
|
|
Loading…
Reference in a new issue