tests/check/gst/gstsegment.c: Fix check
authorWim Taymans <wim.taymans@gmail.com>
Tue, 13 Feb 2007 15:51:00 +0000 (15:51 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Tue, 13 Feb 2007 15:51:00 +0000 (15:51 +0000)
Original commit message from CVS:
* tests/check/gst/gstsegment.c: (GST_START_TEST):
Fix check

ChangeLog
tests/check/gst/gstsegment.c

index 759ddde..52d4f78 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-02-13  Wim Taymans,,,  <wim@fluendo.com>
 
+       * tests/check/gst/gstsegment.c: (GST_START_TEST):
+       Fix check
+
+2007-02-13  Wim Taymans,,,  <wim@fluendo.com>
+
        * docs/design/part-seeking.txt:
        Some small update.
 
index 0b7a246..f9fc415 100644 (file)
@@ -313,7 +313,7 @@ GST_START_TEST (segment_seek_size)
       GST_SEEK_TYPE_CUR, 100, GST_SEEK_TYPE_SET, 200, &update);
   fail_unless (segment.start == 200);
   fail_unless (segment.stop == 200);
-  fail_unless (update == TRUE);
+  fail_unless (update == FALSE);
 
   /* seek relative to end */
   gst_segment_set_seek (&segment, 1.0,
@@ -430,7 +430,7 @@ GST_START_TEST (segment_seek_reverse)
   fail_unless (segment.stop == 80);
   fail_unless (segment.time == 20);
   fail_unless (segment.last_stop == 80);
-  fail_unless (update == TRUE);
+  fail_unless (update == FALSE);
 }
 
 GST_END_TEST;