Diff between a627729717df3ba3ef36d4a6a6703ee007dceb07 and a9af8546072199d52810c66ca67f7d825b6d5124

Changed Files

File Additions Deletions Status
test/simple-player +3 -3 modified

Full Patch

diff --git a/test/simple-player b/test/simple-player
index 23e78ad..a8ae0b1 100755
--- a/test/simple-player
+++ b/test/simple-player
@@ -34,9 +34,9 @@ class Player(dbus.service.Object):
 		else:
 			track = dbus.Dictionary({
 					"xesam:title" : "Title",
-					"xesam:artist" : "Artist",
+					"xesam:artist" : ["Artist"],
 					"xesam:album" : "Album",
-					"xesam:genre" : "Genre",
+					"xesam:genre" : ["Genre"],
 					"xesam:trackNumber" : dbus.Int32(1),
 					"mpris:length" : dbus.Int64(10000) },
 					signature="sv")
@@ -48,7 +48,7 @@ class Player(dbus.service.Object):
 					"Shuffle" : dbus.Boolean(False),
 					"Metadata" : track,
 					"Volume" : dbus.Double(1.0),
-					"Position" : dbus.UInt32(0),
+					"Position" : dbus.Int64(0),
 					"MinimumRate" : dbus.Double(1.0),
 					"MaximumRate" : dbus.Double(1.0),
 					"CanGoNext" : dbus.Boolean(False),