mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
tests: remove superflous ';' and reindent
This commit is contained in:
parent
ecb164675d
commit
3dad049359
1 changed files with 4 additions and 5 deletions
|
@ -72,8 +72,7 @@ GST_START_TEST (test_pb_utils_post_missing_messages)
|
|||
bus = gst_element_get_bus (pipeline);
|
||||
|
||||
/* first, test common assertion failure cases */
|
||||
ASSERT_CRITICAL (msg = gst_missing_uri_source_message_new (NULL, "http");
|
||||
);
|
||||
ASSERT_CRITICAL (msg = gst_missing_uri_source_message_new (NULL, "http"));
|
||||
ASSERT_CRITICAL (gst_missing_uri_source_message_new (pipeline, NULL));
|
||||
|
||||
ASSERT_CRITICAL (gst_missing_uri_sink_message_new (NULL, "http"));
|
||||
|
@ -555,11 +554,11 @@ GST_START_TEST (test_pb_utils_install_plugins)
|
|||
|
||||
ctx = gst_install_plugins_context_new ();
|
||||
|
||||
ASSERT_CRITICAL (ret = gst_install_plugins_sync (NULL, ctx););
|
||||
ASSERT_CRITICAL (ret = gst_install_plugins_sync (NULL, ctx));
|
||||
ASSERT_CRITICAL (ret =
|
||||
gst_install_plugins_async (NULL, ctx, result_cb, (gpointer) & marker););
|
||||
gst_install_plugins_async (NULL, ctx, result_cb, (gpointer) & marker));
|
||||
ASSERT_CRITICAL (ret =
|
||||
gst_install_plugins_async (details, ctx, NULL, (gpointer) & marker););
|
||||
gst_install_plugins_async (details, ctx, NULL, (gpointer) & marker));
|
||||
|
||||
/* make sure the functions return the right error code if the helper does
|
||||
* not exist */
|
||||
|
|
Loading…
Reference in a new issue