Diff between 8e66f28c5c649dad37c04cf32e77b81108eda032 and fe57c2641aebfdc0aec7aa53c1254834cd0ba256

Changed Files

File Additions Deletions Status
test/test-profile +5 -1 modified

Full Patch

diff --git a/test/test-profile b/test/test-profile
index 6414d18..0753e6f 100755
--- a/test/test-profile
+++ b/test/test-profile
@@ -6,6 +6,7 @@ from gi.repository import GObject
 
 import os
 import sys
+import uuid
 import dbus
 import dbus.service
 import dbus.mainloop.glib
@@ -47,7 +48,7 @@ if __name__ == '__main__':
 	option_list = [
 			make_option("-u", "--uuid", action="store",
 					type="string", dest="uuid",
-					default="spp"),
+					default=None),
 			make_option("-p", "--path", action="store",
 					type="string", dest="path",
 					default="/foo/bar/profile"),
@@ -105,6 +106,9 @@ if __name__ == '__main__':
 	if (options.service):
 		opts["Service"] = options.service
 
+	if not options.uuid:
+		options.uuid = str(uuid.uuid4())
+
 	manager.RegisterProfile(options.path, options.uuid, opts)
 
 	mainloop.run()