From d2214f666431dc396cbb7a3a53d0f06e7963ccaa Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Wed, 6 Mar 2013 12:41:47 +0100 Subject: [PATCH] tests: Fix rygel-htt-post-test --- tests/rygel-http-post-test.vala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; -- 2.7.4