summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-01-24 17:57:38 -0500
committerMichael DeHaan <mdehaan@redhat.com>2008-01-24 17:57:38 -0500
commit48d76853216330d7c08b01b4241a90de7ece8033 (patch)
treebc0d083e8f455add2bedf7d412820635d0a93f93
parent8106c1d88407371505115e7938dc99bcaf6fb1e9 (diff)
downloadthird_party-func-48d76853216330d7c08b01b4241a90de7ece8033.tar.gz
third_party-func-48d76853216330d7c08b01b4241a90de7ece8033.tar.xz
third_party-func-48d76853216330d7c08b01b4241a90de7ece8033.zip
Remove sleep from test.add
-rw-r--r--func/minion/modules/test.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/func/minion/modules/test.py b/func/minion/modules/test.py
index ed65fd4..6f7c5fa 100644
--- a/func/minion/modules/test.py
+++ b/func/minion/modules/test.py
@@ -8,7 +8,6 @@ class Test(func_module.FuncModule):
description = "Just a very simple example module"
def add(self, numb1, numb2):
- time.sleep(10)
return numb1 + numb2
def ping(self):