[tor-commits] [ooni-probe/master] Pep8 fixes

art at torproject.org art at torproject.org
Mon Sep 29 18:18:09 UTC 2014


commit 78b53680443a694cb06470d0a9b75d607b84887e
Author: Arturo Filastò <art at fuffa.org>
Date:   Mon Sep 29 13:34:32 2014 +0200

    Pep8 fixes
---
 ooni/tests/test_settings.py |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/ooni/tests/test_settings.py b/ooni/tests/test_settings.py
index 9687965..ab33e26 100644
--- a/ooni/tests/test_settings.py
+++ b/ooni/tests/test_settings.py
@@ -1,5 +1,3 @@
-import os
-import pwd
 import random
 
 from twisted.internet import defer, reactor
@@ -9,12 +7,13 @@ import txtorcon
 
 from ooni.settings import OConfig
 from ooni import errors
+from ooni.utils import net
 from bases import ConfigTestCase
 
 
 class TestSettings(ConfigTestCase):
     def setUp(self):
-        super(ConfigTestCase, self).setUp()
+        super(TestSettings, self).setUp()
         self.conf = OConfig()
         self.configuration = {'advanced': {'interface': 'auto',
                                            'start_tor': True},
@@ -23,7 +22,7 @@ class TestSettings(ConfigTestCase):
         self.tor_protocol = None
 
     def tearDown(self):
-        super(ConfigTestCase, self).tearDown()
+        super(TestSettings, self).tearDown()
         if self.silly_listener is not None:
             self.silly_listener.stopListening()
 





More information about the tor-commits mailing list