From: Tim-Philipp Müller Date: Thu, 11 Jan 2018 19:32:08 +0000 (+0000) Subject: tests: filesrc: more Windows fixes X-Git-Tag: 1.16.2~517 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a69dc71f79cea712bdb2806e77b87b59b244e04d;p=platform%2Fupstream%2Fgstreamer.git tests: filesrc: more Windows fixes Fix typo in newly-added windows uri test. --- diff --git a/tests/check/elements/filesrc.c b/tests/check/elements/filesrc.c index ead87aa..e081685 100644 --- a/tests/check/elements/filesrc.c +++ b/tests/check/elements/filesrc.c @@ -383,9 +383,9 @@ GST_START_TEST (test_uri_interface) #ifdef G_OS_WIN32 /* should accept file:///c:/foo/bar.txt URIs */ fail_unless (gst_uri_handler_set_uri (GST_URI_HANDLER (src), - "file://c:/foo/bar", NULL)); + "file:///c:/foo/bar", NULL)); location = gst_uri_handler_get_uri (GST_URI_HANDLER (src)); - fail_unless_equals_string (location, "file://c:/foo/bar"); + fail_unless_equals_string (location, "file:///c:/foo/bar"); g_free (location); location = NULL; g_object_get (G_OBJECT (src), "location", &location, NULL);