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-06 05:17:39 (GMT)
commit1d00a7f42f8dc7905490de0d7ccf218db3730f1e (patch)
treef929d753609888ebe313ebc0455f7dd3ce5d0bbb /tests
parent9b564472adc3040047783dc0815396090de48266 (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 17c6afc..357d223 100644
--- a/tests/probetests.py
+++ b/tests/probetests.py
@@ -187,7 +187,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