Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/probetests.py
diff options
context:
space:
mode:
authorerick <erick@sugar-dev-erick.(none)>2009-11-15 04:39:24 (GMT)
committer erick <erick@sugar-dev-erick.(none)>2009-11-15 04:39:24 (GMT)
commit05c177246d5b7a548395b2bb36faa90559c71943 (patch)
tree45253e9b7b3faeedd4906efdfcd1377252ea3441 /tests/probetests.py
parent4a793decce57302d09df2120b34d885f061818e1 (diff)
Added **kwargs to the do() for MockAddon used in probetests to follow to catch the activity reference now passed to the action when installed
Diffstat (limited to 'tests/probetests.py')
-rw-r--r--tests/probetests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/probetests.py b/tests/probetests.py
index 65782a3..59072e5 100644
--- a/tests/probetests.py
+++ b/tests/probetests.py
@@ -47,7 +47,7 @@ class MockAddon(Action):
i = TIntProperty(0)
s = TStringProperty("test")
- def do(self):
+ def do(self, **kwargs):
global message_box
message_box = (self.i, self.s)