From c681ecab9f96eb3554c9fdbfebdc69b3e85c6d11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 10 Mar 2010 00:42:15 +0000 Subject: [PATCH] tests: fix typo in videorate unit test pipeline description Two consecutive ! ! leave a 'Link without source' error in the debug log. --- tests/check/elements/videorate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/elements/videorate.c b/tests/check/elements/videorate.c index 4b3ec213e3..d07c90cc3a 100644 --- a/tests/check/elements/videorate.c +++ b/tests/check/elements/videorate.c @@ -725,8 +725,8 @@ GST_START_TEST (test_selected_caps) GstCaps *caps = NULL; GstCaps *expected_caps = NULL; - pipeline = gst_parse_launch ("videotestsrc num-buffers=1 ! " - "! identity ! videorate name=videorate0 ! " VIDEO_CAPS_UNUSUAL_FRAMERATE + pipeline = gst_parse_launch ("videotestsrc num-buffers=1" + " ! identity ! videorate name=videorate0 ! " VIDEO_CAPS_UNUSUAL_FRAMERATE " ! fakesink", NULL); fail_if (pipeline == NULL); videorate = gst_bin_get_by_name (GST_BIN (pipeline), "videorate0");