mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
tests: selector: remove weird semicolons at the end of test functions
Even though it works, it is not needed and seems more natural to not have semicolons at the end of function declarations https://bugzilla.gnome.org/show_bug.cgi?id=746518
This commit is contained in:
parent
7b0b93dafe
commit
92d2351b2e
1 changed files with 6 additions and 6 deletions
|
@ -368,7 +368,7 @@ run_input_selector_buffer_count (gint num_input_pads,
|
|||
|
||||
/* Push buffers to input pad and check the
|
||||
amount of buffers arrived to output pads */
|
||||
GST_START_TEST (test_output_selector_buffer_count);
|
||||
GST_START_TEST (test_output_selector_buffer_count)
|
||||
{
|
||||
gint i, j;
|
||||
|
||||
|
@ -383,7 +383,7 @@ GST_END_TEST;
|
|||
|
||||
/* Push buffers to input pads and check the
|
||||
amount of buffers arrived to output pad */
|
||||
GST_START_TEST (test_input_selector_buffer_count);
|
||||
GST_START_TEST (test_input_selector_buffer_count)
|
||||
{
|
||||
gint i, j;
|
||||
|
||||
|
@ -397,7 +397,7 @@ GST_START_TEST (test_input_selector_buffer_count);
|
|||
GST_END_TEST;
|
||||
|
||||
|
||||
GST_START_TEST (test_output_selector_no_srcpad_negotiation);
|
||||
GST_START_TEST (test_output_selector_no_srcpad_negotiation)
|
||||
{
|
||||
GstElement *sel;
|
||||
GstCaps *caps;
|
||||
|
@ -478,7 +478,7 @@ teardown_output_selector (void)
|
|||
output_pads = NULL;
|
||||
}
|
||||
|
||||
GST_START_TEST (test_output_selector_getcaps_none);
|
||||
GST_START_TEST (test_output_selector_getcaps_none)
|
||||
{
|
||||
GList *walker;
|
||||
|
||||
|
@ -513,7 +513,7 @@ GST_START_TEST (test_output_selector_getcaps_none);
|
|||
GST_END_TEST;
|
||||
|
||||
|
||||
GST_START_TEST (test_output_selector_getcaps_all);
|
||||
GST_START_TEST (test_output_selector_getcaps_all)
|
||||
{
|
||||
GList *walker;
|
||||
GstCaps *expected;
|
||||
|
@ -553,7 +553,7 @@ GST_START_TEST (test_output_selector_getcaps_all);
|
|||
GST_END_TEST;
|
||||
|
||||
|
||||
GST_START_TEST (test_output_selector_getcaps_active);
|
||||
GST_START_TEST (test_output_selector_getcaps_active)
|
||||
{
|
||||
GList *walker;
|
||||
GstCaps *expected;
|
||||
|
|
Loading…
Reference in a new issue