tests: Fix broken tests after d6f83bbe
authorJens Georg <mail@jensge.org>
Thu, 16 Feb 2012 12:15:44 +0000 (14:15 +0200)
committerJens Georg <mail@jensge.org>
Thu, 16 Feb 2012 12:15:44 +0000 (14:15 +0200)
tests/rygel-http-item-uri-test.vala
tests/rygel-http-post-test.vala

index e527156..82889a5 100644 (file)
@@ -94,6 +94,10 @@ private class Rygel.VideoItem : VisualItem {
     public ArrayList<Subtitle> subtitles = new ArrayList<Subtitle> ();
 }
 
+private class Rygel.MusicItem : MediaItem {
+    public Thumbnail album_art;
+}
+
 private class Rygel.HTTPItemURITest : GLib.Object {
     private const int THUMBNAIL_INDEX = 1;
     private const int SUBTITLE_INDEX = 1;
index d8da06b..ffaf299 100644 (file)
@@ -525,6 +525,14 @@ private class Rygel.VideoItem : Rygel.VisualItem {
     public ArrayList<Subtitle> subtitles = new ArrayList<Subtitle> ();
 }
 
+private class Rygel.MusicItem : MediaItem {
+    public Thumbnail album_art;
+
+    public MusicItem (string id, MediaContainer parent) {
+        base (id, parent);
+    }
+}
+
 public errordomain Rygel.ContentDirectoryError {
     INVALID_ARGS = 402
 }