testsuite/test_pad.py: The bug was not a bug. Fixed the typo.
authorEdward Hervey <bilboed@bilboed.com>
Tue, 29 Aug 2006 09:23:59 +0000 (09:23 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Tue, 29 Aug 2006 09:23:59 +0000 (09:23 +0000)
Original commit message from CVS:
* testsuite/test_pad.py:
The bug was not a bug. Fixed the typo.

ChangeLog
testsuite/test_pad.py

index 9acf40f..dda8bc2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-29  Edward Hervey  <edward@fluendo.com>
+
+       * testsuite/test_pad.py:
+       The bug was not a bug. Fixed the typo.
+
 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * testsuite/test_pad.py:
index 2fa18a0..535893b 100644 (file)
@@ -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)