Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorerick <erick@sugar-dev-erick.(none)>2009-12-02 03:31:36 (GMT)
committer erick <erick@sugar-dev-erick.(none)>2009-12-02 03:31:36 (GMT)
commit48c783d2ad109f772f09df441dd873682a7bf1b0 (patch)
tree12677cd2ee4cf6e6a2d714d0bd3f3871df0437e0 /tests
parent6686a0f73d0eaa86221f40a7074e8f5b3aac7d63 (diff)
Reexposed explicitly the activity_name and unique_id used in probes for the dbus session as constructor arguments on probe
Diffstat (limited to 'tests')
-rw-r--r--tests/probetests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/probetests.py b/tests/probetests.py
index 37748d8..92d34a6 100644
--- a/tests/probetests.py
+++ b/tests/probetests.py
@@ -184,7 +184,8 @@ class ProbeTest(unittest.TestCase):
#Setup the activity and probe
self.activity = MockActivity()
- self.probe = TProbe(self.activity, MockServiceProxy())
+ self.probe = TProbe(self.activity, self.activity.get_bundle_id(),
+ self.activity.get_id(), service_proxy=MockServiceProxy())
#Override the eventOccured on the Probe...
self.old_eO = self.probe.eventOccured