Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/enginetests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/enginetests.py')
-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):