From: Jens Georg Date: Wed, 6 Mar 2013 11:41:47 +0000 (+0100) Subject: tests: Fix rygel-htt-post-test X-Git-Tag: RYGEL_0_17_9~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2214f666431dc396cbb7a3a53d0f06e7963ccaa;p=profile%2Fivi%2Frygel.git tests: Fix rygel-htt-post-test --- diff --git a/tests/rygel-http-post-test.vala b/tests/rygel-http-post-test.vala index eccbaa3..6949f01 100644 --- a/tests/rygel-http-post-test.vala +++ b/tests/rygel-http-post-test.vala @@ -487,16 +487,16 @@ internal class Rygel.HTTPResponse : Rygel.StateMachine, GLib.Object { } } -public class Rygel.ItemRemovalQueue: GLib.Object { - public static ItemRemovalQueue get_default () { - return new ItemRemovalQueue (); +public class Rygel.ObjectRemovalQueue: GLib.Object { + public static ObjectRemovalQueue get_default () { + return new ObjectRemovalQueue (); } - public bool dequeue (MediaItem item) { + public bool dequeue (MediaObject item) { return true; } - public async void remove_now (MediaItem item, Cancellable? cancellable) { + public async void remove_now (MediaObject item, Cancellable? cancellable) { Idle.add (remove_now.callback); yield;