summaryrefslogtreecommitdiff
path: root/testsuite/test_pad.py
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2006-08-29 09:23:59 +0000
committerEdward Hervey <bilboed@bilboed.com>2006-08-29 09:23:59 +0000
commit389ed247ab81045dac0b4464e8be20c3361a153e (patch)
treed365f83ba56b4b32132d3e89089e0a4b96d99eea /testsuite/test_pad.py
parent7e1fa1d97ef376c17d2626943ac20180d4e376ef (diff)
testsuite/test_pad.py: The bug was not a bug. Fixed the typo.
Original commit message from CVS: * testsuite/test_pad.py: The bug was not a bug. Fixed the typo.
Diffstat (limited to 'testsuite/test_pad.py')
-rw-r--r--testsuite/test_pad.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/testsuite/test_pad.py b/testsuite/test_pad.py
index 2fa18a0..535893b 100644
--- a/testsuite/test_pad.py
+++ b/testsuite/test_pad.py
@@ -227,8 +227,7 @@ class PadPushEventLinkedTest(TestCase):
self.failIf(id(self.event) == id(self.events[0]))
# ... but they wrap the same GstEvent
self.assertEquals(repr(self.event), repr(self.events[0]))
- # FIXME: this one fails where it should pass
- # self.failUnless(self.events == self.events[0])
+ self.failUnless(self.event == self.events[0])
self.src.remove_buffer_probe(probe_id)
self.assertEquals(len(self.events), 1)