test: Allow phonebook listing to fail
diff --git a/test/pbap-client b/test/pbap-client
index 7dd54ef..fbe930c 100755
--- a/test/pbap-client
+++ b/test/pbap-client
@@ -135,7 +135,11 @@
 		print "Size = %d\n" % (ret)
 
 		print "\n--- List vCard ---\n"
-		ret = pbap_client.interface().List(dbus.Dictionary())
+		try:
+			ret = pbap_client.interface().List(dbus.Dictionary())
+		except:
+			ret = []
+
 		params = dbus.Dictionary({ "Format" : "vcard30",
 					"Fields" : [ "VERSION", "FN", "TEL"] })
 		for item in ret: