commit d621155c27143c6fad8743d0bfbdc15727a3b0db Author: Arturo Filastò arturo@filasto.net Date: Fri Sep 28 12:06:00 2012 +0000
Fix bug in tests --- ooni/plugoo/tests.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ooni/plugoo/tests.py b/ooni/plugoo/tests.py index 37e0664..4e7e094 100644 --- a/ooni/plugoo/tests.py +++ b/ooni/plugoo/tests.py @@ -30,14 +30,14 @@ class OONITest(object): ended = False
def __init__(self, local_options, global_options, report, ooninet=None, - my_reactor=reactor): + reactor=reactor): # These are the options that are read through the tests suboptions self.local_options = local_options # These are the options global to all of OONI self.global_options = global_options self.report = report #self.ooninet = ooninet - self.reactor = my_reactor + self.reactor = reactor self.result = {}
self.initialize()
tor-commits@lists.torproject.org