Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-11-25 22:12:40 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-11-25 22:12:40 (GMT)
commita6bdbdecfbe53924dc8e38768aed1d8037be6143 (patch)
tree6d643893800f2cdc8ff1f554c3c14fdbfc944040 /tests
parent4f2d6d7e1820a3e5d6d60e3100993c5f1b6fb9ad (diff)
LP 484518 : Code Review modifications of Engine
Diffstat (limited to 'tests')
-rw-r--r--tests/enginetests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/enginetests.py b/tests/enginetests.py
index 4a8a3ca..2d1e723 100644
--- a/tests/enginetests.py
+++ b/tests/enginetests.py
@@ -103,7 +103,7 @@ class MockProbeMgrMultiAddons(object):
currentActivity = property(fget=lambda s:s, fset=lambda s, v: v)
def run_install_cb(self, action_number, action):
- self._action_installed_cb_list[action_number](action, str(uuid1()))
+ self._action_installed_cb_list[action_number](str(uuid1()))
def run_install_error_cb(self, action_number):
self._install_error_cb_list[action_number](Exception("Could not install action..."))
@@ -155,7 +155,7 @@ class MockProbeMgr(object):
def install(self, action, action_installed_cb, error_cb):
self.action = action
- self._action_installed_cb = partial(action_installed_cb, action)
+ self._action_installed_cb = action_installed_cb
self._install_error_cb = partial(error_cb, action)
def update(self, action_address, newaction):