From c7225ba2577e012b20c03451be21604889eb8104 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Tue, 24 Jul 2012 12:30:37 +0200 Subject: [PATCH] Minor bug in test case. --- tests/fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fixtures.py b/tests/fixtures.py index 1edebc4..1b20248 100644 --- a/tests/fixtures.py +++ b/tests/fixtures.py @@ -48,7 +48,7 @@ class Calculator(object): def __init__(self, denominator): self.denominator = denominator - def calculate(x, y): + def calculate(self, x, y): return x * y / self.denominator @job(queue='default')