summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJens Georg <jensg@openismus.com>2013-03-06 12:41:47 +0100
committerJens Georg <jensg@openismus.com>2013-03-06 12:41:59 +0100
commitd2214f666431dc396cbb7a3a53d0f06e7963ccaa (patch)
tree295b6c32243a7d7a16589c46590d1bd28d6c377a /tests
parent27fcf9618a93a22e2244038e32f6f6cc961fff7b (diff)
downloadrygel-d2214f666431dc396cbb7a3a53d0f06e7963ccaa.tar.gz
tests: Fix rygel-htt-post-test
Diffstat (limited to 'tests')
-rw-r--r--tests/rygel-http-post-test.vala10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/rygel-http-post-test.vala b/tests/rygel-http-post-test.vala
index eccbaa3c..6949f013 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;