commit f508c2d449805072d33b0ea3b9121f0b7f69c6d0 Author: Isis Lovecruft isis@torproject.org Date: Wed Mar 12 06:02:41 2014 +0000
Two whitespace fixes in lib/bridgedb/test/test_captcha.py.
[ci-skip] --- lib/bridgedb/test/test_captcha.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/bridgedb/test/test_captcha.py b/lib/bridgedb/test/test_captcha.py index 27dd6e0..b2e67b3 100644 --- a/lib/bridgedb/test/test_captcha.py +++ b/lib/bridgedb/test/test_captcha.py @@ -52,7 +52,7 @@ class ReCaptchaTests(unittest.TestCase): """Check the ReCaptcha class stored the private and public keys.""" self.assertEquals(self.c.privkey, 'sekrit') self.assertEquals(self.c.pubkey, 'publik') - + def test_get(self): """Test get() method."""
@@ -71,7 +71,7 @@ class ReCaptchaTests(unittest.TestCase): try: # There isn't really a reliable way to test this function! :( self.c.get() - except Exception as error: + except Exception as error: reason = "ReCaptcha.get() test requires an active network " reason += "connection.\nThis test failed with: %s" % error raise unittest.SkipTest(reason)
tor-commits@lists.torproject.org