aboutsummaryrefslogtreecommitdiff
path: root/tests/check/gst/gstchildproxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check/gst/gstchildproxy.c')
-rw-r--r--tests/check/gst/gstchildproxy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/check/gst/gstchildproxy.c b/tests/check/gst/gstchildproxy.c
index a4249ff..68b357d 100644
--- a/tests/check/gst/gstchildproxy.c
+++ b/tests/check/gst/gstchildproxy.c
@@ -29,7 +29,7 @@ GST_START_TEST (test_get)
pipeline = gst_pipeline_new ("foo");
fail_unless (pipeline != NULL, "Could not create pipeline");
- gst_child_proxy_get (GST_OBJECT (pipeline), "name", &name, NULL);
+ gst_child_proxy_get (G_OBJECT (pipeline), "name", &name, NULL);
fail_if (g_strcmp0 ("foo", name));
g_free (name);
@@ -51,7 +51,7 @@ GST_START_TEST (test_child_get)
gst_bin_add (GST_BIN (pipeline), elem);
- gst_child_proxy_get (GST_OBJECT (pipeline), "src::name", &name, NULL);
+ gst_child_proxy_get (G_OBJECT (pipeline), "src::name", &name, NULL);
fail_if (g_strcmp0 ("src", name));
g_free (name);