Skip to content

Commit

Permalink
dbus: append random number to test service name
Browse files Browse the repository at this point in the history
  • Loading branch information
bboozzoo committed Mar 30, 2015
1 parent ccb1b3e commit 1445e40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/tasks/test_dbus.py
Expand Up @@ -12,9 +12,11 @@
raise Skip("dbus support is required to run this test")

from sparts.sparts import option
from random import getrandbits


class TestDBusTask(DBusServiceTask):
BUS_NAME = 'com.github.facebook.test'
BUS_NAME = 'com.github.facebook.test-{}'.format(getrandbits(32))


class TestDBusSystemTask(DBusServiceTask):
Expand Down

0 comments on commit 1445e40

Please sign in to comment.